body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #121212;
}

.scrolling-container {
  position: absolute;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.grid {
 position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 200%; /* To ensure seamless horizontal scrolling */
  gap: 20px; /* Add spacing between rows */
  animation: scroll-horizontal 20s linear infinite;
}

.grid-row {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  width: 200vw; /* Ensure the row takes full width */

}

.grid-row img {
  width: 128px;
  height: 128px;
  margin: 0;
  border-radius: 1.25rem;
  
}
.profilepic{
	  border-radius: 5.25rem;

}

@keyframes scroll-horizontal {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.content-panel {
  position: relative;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  width: 60%;
  max-width: 600px;
}

.logo-container img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 1.25rem;

}

.company-info h1 {
  font-size: 2em;
  margin-bottom: 15px;
}

.contact-links a {
  display: block;
  margin: 5px 0;
  color: #333;
  text-decoration: none;
}
.grid-row:nth-child(even) {
  transform: translateX(0%);
}

.grid-row:nth-child(odd) {
  transform: translateX(-50vw);
}
.grid-row img:nth-child(even) {
	
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1), -1rem -1rem 1rem -1rem #6CCECF,
			1rem 1rem 1rem -1rem #F2C1C2;
}

.grid-row img:nth-child(odd) {
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1), -1rem -1rem 1rem -1rem #F2C1C2,
			1rem 1rem 1rem -1rem #6CCECF;
}