body {
  margin: 0;
  background-color: #0b2a5a;
  color: white;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}
header {
  text-align: center;
  padding: 20px;
}
.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh;
  opacity: 0;
  animation: fadeIn 5s ease forwards;
}
.logo-container img {
  max-width: 95%;
  max-height: 90vh;
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
footer {
  text-align: center;
  padding: 20px;
}
.contact-links a {
  color: #ffc107;
  text-decoration: none;
  margin: 0 15px;
  font-size: 1.3em;
}
.contact-links a:hover {
  text-decoration: underline;
}
