body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(315deg, #0F172A 80%, #11E2EC 100%);
  color: white;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width:60%;
}

.logo {
  width: 400px;
  height: auto;
  margin-bottom: 20px;
}

h1 {
  font-size: 18px;
  padding-top: 30px;
  margin: 0;
}

.partners {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: rgba(15, 23, 42, 0.8);
  padding: 30px 0;
  flex-wrap: wrap;
}

.partners a {
  display: inline-block;
}

.partners img {
  width: 120px; /* Increase the size of logos */
  height: auto;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.partners img:hover {
  filter: brightness(1) invert(0);
  transform: scale(1.1);
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .partners {
    flex-direction: column; /* Stack the logos vertically */
    align-items: center;
  }

  .partners img {
    width: 180px; /* Make the logos bigger on smaller screens */
    margin-top: 15px;
    margin-bottom: 10px;
  }
}
