/* General Styling */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #003271;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  text-align: center;
  width: 90%;
  /* max-width: 900px; */
  position: relative;
}

/* Top and Bottom Text */
.top-text {
  position: absolute;
  top: 10px;
  left: 20px;
  font-weight: bold;
  font-size: 2.5rem;
}

.bottom-text {
  position: absolute;
  bottom: 10px;
  right: 20px;
  font-weight: bold;
  font-size: 2.5rem;
}

/* Logo Section */
.logo-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 140px 0 140px;
}

.logoIMG {
  width: 60%;
  height: auto;
}

/* Button */
.btn {
  padding: 15px 30px;
  border: none;
  border-radius: 6px;
  font-size: 1.5rem;
  cursor: pointer;
  background: white;
  color: #003271;
  font-weight: bold;
  transition: all 0.3s;
  position: absolute;
  bottom: 20px;
}

.btn:hover {
  background: #f1f1f1;
}

/* Responsive */
@media (max-width: 1024px) {
  .top-text,
  .bottom-text {
    font-size: 1.25rem;
  }
  .logoIMG {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .logo-section {
    margin: 60px 0 40px;
  }

  .top-text,
  .bottom-text {
    font-size: 1rem;
  }

  .logoIMG {
    /* max-width: 220px; */
    width: 90%;
  }
}

@media (max-width: 480px) {
  .container {
    width: 100%;
  }
  .top-text,
  .bottom-text {
    font-size: 1rem;
  }

  .logo-section {
    margin: 80px 0 80px;
  }

  .logoIMG {
    width: 95%;
  }

  .btn {
    font-size: 1.2rem;
    padding: 10px 20px;
  }
}
