*,
::before,
::after,
:focus {
  box-sizing: border-box;
  outline: none;
  box-shadow: none;
}
body {
  font-family: "Poppins", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
}
/* login page */
@keyframes moveImage {
  0% {
    transform: translateY(-50px); /* Start 50px from the top */
  }
  100% {
    transform: translateY(50px); /* Move to 50px from the bottom */
  }
}

.animated-image {
  animation: moveImage 2s infinite alternate; /* Adjust duration and infinite as needed */
}
/* page not found */
.page-not-found-body .container {
  position: relative;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-not-found-body h1 {
  font-size: 10rem;
}

.page-not-found-body .pizza {
  position: absolute;
  width: 131px;
  height: 131px;
  border-radius: 50%;
  background: #f77f00;
}

.page-not-found-body .cheese {
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #fcbf49;
}

.page-not-found-body .pepperoni {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #d62828;
}

.page-not-found-body .pep-1 {
  top: 25px;
  left: 15px;
}

.page-not-found-body .pep-2 {
  top: 22px;
  left: 75px;
}

.page-not-found-body .pep-3 {
  top: 5px;
  left: 47px;
}

.page-not-found-body .pep-4 {
  top: 73px;
  left: 20px;
}

.page-not-found-body .pep-5 {
  top: 72px;
  left: 70px;
}

.page-not-found-body .pep-6 {
  top: 49px;
  left: 82px;
}

.page-not-found-body .pep-7 {
  top: 54px;
  left: 54px;
}

.page-not-found-body .pep-8 {
  top: 85px;
  left: 50px;
}

.page-not-found-body .pep-9 {
  top: 50px;
  left: 3px;
}

.page-not-found-body .pep-10 {
  top: 50px;
  left: 30px;
}

.page-not-found-body .pep-11 {
  top: 29px;
  left: 50px;
}

.page-not-found-body .line {
  position: absolute;
  top: 55px;
  left: -10px;
  width: 130px;
  height: 1px;
  background: #6a040f;
  opacity: 0.25;
}

.page-not-found-body .line-1 {
  transform: rotate(0deg);
}

.page-not-found-body .line-2 {
  transform: rotate(45deg);
}

.page-not-found-body .line-3 {
  transform: rotate(-45deg);
}

.page-not-found-body .line-4 {
  transform: rotate(90deg);
}
/* prelaod */
.preload-wrapper svg {
  height: 10vh;
  width: 100%;
}
.preload-wrapper svg #cap {
  transform-origin: center;
  animation: capAnimation 1s ease-in-out infinite;
}
.preload-wrapper svg #cap,
.preload-wrapper svg #body {
  fill: #e4cdb4;
}
.preload-wrapper svg .smell {
  opacity: 1;
  fill: #e4cdb4;
}
@keyframes capAnimation {
  0% { transform: rotate(5deg); }
  50% { transform: rotate(-5deg); }
  100% { transform: rotate(5deg); }
}
.animate-cap {
  animation: capAnimation 1s ease-in-out infinite;
}