* {
  margin: 0;
}

@font-face {
  font-family: superstar;
  src: url(../assets/superstar.ttf);
}
@font-face {
  font-family: montserrat;
  src: url(../assets/Montserrat-Regular.ttf);
}
body {
  overflow: hidden;
}

.background--movement {
  position: absolute;
  top: 0;
  width: 100vw;
  height: 300vh;
  background-image: url(../img/background.gif);
  background-size: 100vw;
  animation: backgroundMovement 20s infinite linear;
}

@keyframes backgroundMovement {
  0% {
    transform: translateY(0vw);
  }
  100% {
    transform: translateY(-56.12vw);
  }
}
p {
  font-family: superstar;
  color: white;
}

.main--section {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
}
.main--section .welcome--txt {
  position: absolute;
  left: 50%;
  top: 1vw;
  transform: translate(-50%);
  width: 80vw;
  text-align: center;
  font-size: 6vw;
}
.main--section .lang--txt {
  position: absolute;
  left: 50%;
  top: 7.5vw;
  transform: translate(-50%);
  width: 80vw;
  text-align: center;
  font-size: 1.5vw;
  font-family: montserrat;
}
.main--section .quote--txt {
  position: absolute;
  left: 50%;
  top: 12vw;
  transform: translate(-50%);
  width: 80vw;
  text-align: center;
  font-size: 2vw;
}
.main--section .button--section {
  margin-top: 15vw;
  display: flex;
  justify-content: center;
  width: 35vw;
  flex-wrap: wrap;
}
.main--section .button--section a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 6vw;
  height: 6vw;
  margin: 0.5vw;
  background-color: #0f1149;
  outline: solid 0.2vw #381841;
  transition: transform 0.05s ease-out;
}
.main--section .button--section a img {
  width: 5vw;
}
.main--section .button--section a:hover {
  outline: solid 0.2vw white;
  transform: scale(1.05);
}
.main--section .day--log--section {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  margin-top: 1vw;
  width: 30vw;
  height: 20vw;
}
.main--section .day--log--section p {
  font-family: superstar;
  font-size: 2.5vw;
  margin-top: -1vw;
  transform: translateY(1.2vw);
}
.main--section .day--log--section .day--log--field {
  width: 40vw;
  height: 8vw;
  text-align: center;
  overflow-y: scroll;
  font-family: montserrat;
  resize: none;
  border-radius: 0;
  border: 0;
  background: none;
  scrollbar-width: none;
  outline: solid 0.2vw #381841;
  color: white;
}
.main--section .day--log--section .day--log--field:hover {
  outline: solid 0.2vw white;
}
.main--section .day--log--section .submit--daily--btn {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 1.8vw;
  width: 10vw;
  height: 3.5vw;
  background-color: #0f1149;
  outline: #381841 solid 0.2vw;
  transition: transform 0.05s ease-out;
}
.main--section .day--log--section .submit--daily--btn:hover {
  cursor: pointer;
  outline: white solid 0.2vw;
  transform: scale(1.05);
}
.main--section .notepad--section {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  position: absolute;
  right: 2vw;
  bottom: 6.3vw;
  height: 25vw;
}
.main--section .notepad--section p {
  margin-top: 1.1vw;
  font-size: 2.5vw;
}
.main--section .notepad--section .notepad--field {
  width: 15vw;
  height: 20vw;
  resize: none;
  overflow-y: scroll;
  font-family: montserrat;
  border-radius: 0;
  border: 0;
  background: none;
  scrollbar-width: none;
  outline: solid 0.2vw #381841;
  color: white;
  font-size: 1vw;
}
.main--section .notepad--section .notepad--field:hover {
  outline: 0.2vw white solid;
}
.main--section .notepad--section .submit--notepad--btn {
  position: absolute;
  bottom: -5.25vw;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 1.8vw;
  width: 10vw;
  height: 3.5vw;
  background-color: #0f1149;
  outline: #381841 solid 0.2vw;
  transition: transform 0.05s ease-out;
}
.main--section .notepad--section .submit--notepad--btn:hover {
  cursor: pointer;
  outline: white solid 0.2vw;
  transform: scale(1.05);
}
.main--section .excercise--hover--section {
  position: absolute;
  left: 0;
  width: 20vw;
  height: 100vh;
}
.main--section .excercise--hover--section .excercise--calendar--section {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  position: absolute;
  left: 2vw;
  bottom: 6.3vw;
  height: 20vw;
}
.main--section .excercise--hover--section .excercise--calendar--section .excercise--schedule {
  position: absolute;
  left: 0vw;
  opacity: 0;
  z-index: 5;
  transition: all 0.2s;
  transform: translate(0vw, 0vw);
}
.main--section .excercise--hover--section .excercise--calendar--section .excercise--schedule ul .excercise--item {
  width: 12vw;
  color: white;
  font-size: 1vw;
}
.main--section .excercise--hover--section .excercise--calendar--section .month--txt {
  font-size: 2.5vw;
}
.main--section .excercise--hover--section .excercise--calendar--section .calendar--section {
  display: flex;
  flex-wrap: wrap;
  width: 16vw;
}
.main--section .excercise--hover--section .excercise--calendar--section .calendar--section .calendar--item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2vw;
  height: 2vw;
  background-color: #0f1149;
  outline: solid 0.2vw #381841;
  margin: 0.1vw;
}
.main--section .excercise--hover--section .excercise--calendar--section .calendar--section .calendar--item p {
  font-size: 1vw;
}
.main--section .excercise--hover--section .excercise--calendar--section .check--sport--btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: -5.25vw;
  left: 12vw;
  width: 3.5vw;
  height: 3.5vw;
  background-color: #0f1149;
  outline: solid 0.2vw #381841;
  color: white;
  font-family: superstar;
  font-size: 2vw;
}
.main--section .excercise--hover--section .excercise--calendar--section .check--sport--btn:hover {
  cursor: pointer;
  outline: solid 0.2vw white;
}
.main--section .excercise--hover--section .excercise--calendar--section .submit--sport--btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: -5.25vw;
  left: 0vw;
  width: 10vw;
  height: 3.5vw;
  background-color: #0f1149;
  outline: solid 0.2vw #381841;
  color: white;
  font-size: 1.8vw;
}
.main--section .excercise--hover--section .excercise--calendar--section .submit--sport--btn:hover {
  cursor: pointer;
  outline: solid 0.2vw white;
}
.main--section .excercise--hover--section:hover .excercise--schedule {
  transform: translate(0vw, -15vw);
  opacity: 1;
}/*# sourceMappingURL=style.css.map */