html {
  font-size: 62.5%;
}
body {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  background-image: url(img/BACKGROUND.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 98vh;
}

.container {
  max-width: 70rem;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
}

.main-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.logo {
  padding-top: 2rem;
  width: 22rem;
  padding-bottom: 6rem;
  animation: scale-out-center 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) reverse both;
}

.icon {
  width: 4rem;
  stroke: white;
  fill: white;
  height: 4rem;
}

.btns {
  font-size: 2rem;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  background-color: rgba(2, 12, 59, 0.744);
  padding-left: 0.5rem;
  padding-right: 4rem;
  border-radius: 12px;
  margin-bottom: 3rem;
  text-decoration: none;
  color: white;
  cursor: pointer;

  animation: scale-out-center 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) reverse both;

  transition: all 0.5s;
}

.btn:hover,
.btn:active {
  background-color: rgba(255, 255, 255, 0.359);
  color: rgb(2, 12, 59);
  animation: shadow-drop-2-center 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;

  transition: all 0.5s;
}

/* 
////////////////////////////// */

@keyframes scale-out-center {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0);
    opacity: 1;
  }
}

@keyframes shadow-drop-2-center {
  0% {
    transform: translateZ(0);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
  100% {
    transform: translateZ(50px);
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.35);
  }
}

.btn1 {
  animation: scale-out-center 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) reverse both;
  animation-delay: 0.2s;
}

.btn2 {
  animation: scale-out-center 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) reverse both;
  animation-delay: 0.4s;
}

.btn3 {
  animation: scale-out-center 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) reverse both;
  animation-delay: 0.6s;
}

.btn4 {
  animation: scale-out-center 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) reverse both;
  animation-delay: 0.8s;
}

.nbody {
  background-image: url(img/egg2.webp);
  height: 98vh;

  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.nbtn {
  background-color: rgba(126, 111, 0, 0.744);
}
.nbtn:hover {
  background-color: rgba(0, 0, 0, 0.608);
  color: rgb(255, 227, 12);
}

.shake {
  animation: shake-horizontal 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
}

@keyframes shake-horizontal {
  0%,
  100% {
    transform: rotate(0);
  }
  10%,
  30%,
  50% {
    transform: rotate(-25deg);
  }
  20%,
  40%,
  60% {
    transform: rotate(25deg);
  }
  80% {
    transform: rotate(20deg);
  }
  90% {
    transform: rotate(-20deg);
  }
}
