* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
}

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
  perspective: 1000px;
  margin: 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  body {
    perspective: none;
  }
}

.container {
  padding: 50px 0;
  text-align: center;
  color: #fff;
  opacity: 0;
  transform: rotateX(90deg) translateY(50px);
  animation: fadeInRotate 3s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
  position: relative;
  z-index: 9999;
}

.logo, .text, .button {
  opacity: 0;
  animation: slideIn 2s ease-out forwards;
}

.logo {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  animation-delay: 0.5s;
}
.logo img {
  max-width: 100%;
}

.text {
  font-size: 24px;
  text-align: center;
  color: #fff;
  font-weight: 300;
  margin: 0 auto 30px auto;
  animation-delay: 0.8s;
  max-width: 280px;
}

.button {
  padding: 10px 40px;
  background-color: #EDBD71;
  border: none;
  font-weight: bold;
  color: #002249;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  animation-delay: 1.1s;
  text-decoration: none;
}
.button:hover {
  background-color: #c79e5d;
  transform: scale(1.05);
}

#parallax {
  position: absolute;
  width: 100%;
  height: 100vh;
  background: url("../img/bgBody.jpg");
  background-size: 105%;
  background-repeat: no-repeat;
  background-position: center;
  background-position: 50% 50%;
}
@media screen and (max-width: 768px) {
  #parallax {
    background-position: center;
    background-size: cover;
  }
}

@keyframes fadeInRotate {
  0% {
    opacity: 0;
    transform: rotateX(90deg) translateY(50px);
  }
  100% {
    opacity: 1;
    transform: rotateX(0) translateY(0);
  }
}
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}/*# sourceMappingURL=style.css.map */