* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

.container {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

body {
  background-color: #240046;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: #000814;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: #ffd60a;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #ffc300;
}

.back-box {
  width: 12rem;
  height: 5rem;
  position: fixed;
  left: 100%;
  top: 10rem;
  transform: translateX(-12rem);
  transition: 0.3s;
  display: flex;
  cursor: pointer;
  background-color: #ffc300;
  z-index: 5;
  animation: 1s pulse ease-in-out infinite;
}
.back-box .img-btn {
  width: 5rem;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: 0.5s Arrow ease-in-out infinite;
}
.back-box .img-btn img {
  width: 4rem;
}
.back-box .word-btn {
  width: 7rem;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.back-box .word-btn p {
  font-family: "Lilita One";
  font-size: 2.2rem;
}
.back-box:hover {
  transform: translateX(-12rem) scale(1.1);
}

@keyframes Arrow {
  0% {
    transform: translateX(8px);
  }
  50% {
    transform: translateX(-2px);
  }
  100% {
    transform: translateX(8px);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1) translateX(-12rem);
  }
  50% {
    transform: scale(1.05) translateX(-12rem);
  }
  100% {
    transform: scale(1) translateX(-12rem);
  }
}
.img-project {
  position: relative;
  width: 100%;
  height: auto;
}
.img-project .img-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.img-project .img-box img {
  width: 100%;
  margin-bottom: 2rem;
}/*# sourceMappingURL=style.css.map */