body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column; /* Align items vertically */
  min-height: 100vh;
  background-color: #101d39; /* Dark blue background color */
  font-family: 'Abel', sans-serif;
  color: white; /* Text color */
}

.container {
  display: flex;
  flex-direction: column; /* Align items vertically */
  flex-grow: 1;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.logo {
  margin-top: 1em;
  margin-bottom: 1em;
  max-height: 60vh;
  max-width: 80%;
  height: auto;
}

.logo-text {
  font-size: 24px;
  margin-top: 10px;
  font-weight: normal;
}

.social-links {
  margin-top: 10px;
  margin-bottom: 10px;
}

.social-links a {
  display: inline-block;
  margin: 0 3px; 
}

.social-links img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

/* media query */
@media (min-width: 768px) {
  .logo-text {
    font-size: 18px; /* Adjust the font size for larger screens */
  }

  .logo {
    max-width: 70%; /* Adjust the maximum width for larger screens */
  }

}

footer {
  position: sticky;
  bottom: 0;
  left: 0;
  width: 100%; /* Stretch to full width */
  background-color: #0a1625; /* Darker color for the footer */
  color: white;
  text-align: center;
  padding: 10px 0;
}

.footer-content {
  display: flex;
  flex-direction: column; 
  justify-content: center;
  align-items: center;
}

.footer-content img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 5px;
}

.footer-content p {
  margin: 0;
  font-size: 14px;
}