* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #045a4f;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;  /* Center content horizontally */
  padding: 20px;
}

.logo-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.logo {
  width: 300px;
  height: auto;
  max-width: 100%;  /* Ensure logo scales responsively */
}

.button-container {
  display: flex;
  flex-direction: column;  /* Stack buttons vertically on smaller screens */
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  width: 100%;  /* Allow container to take full width */
}

.mt-btn {
  width: 100%;  /* Ensure buttons take up the full width of their container */
  max-width: 500px;  /* Prevent buttons from growing too wide */
}

.btn {
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  background-color: #fcb254;
  color: black;
  transition: background-color 0.3s ease;
  font-size: 22px;
  padding: 1rem;
  width: 100%;  /* Make buttons responsive */
  text-align: center;
}

.mt-btn {
  margin-top: 30px;
}

.btn:hover {
  background-color: white;
}

/* Mobile First Responsive Design */
@media screen and (max-width: 992px) {
  .btn {
      font-size: 18px;
  }

  .logo {
      width: 250px;
  }
}

@media screen and (max-width: 768px) {
  body {
      padding: 10px;
  }

  .logo-container {
      margin-top: 20px;
  }

  .logo {
      width: 200px;
  }

}
