@import "reset.css";

@import url('https://fonts.googleapis.com/css2?family=Gowun+Batang&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

body {
  font-family: "Gowun Batang", serif;
  font-weight: 400;
  font-style: normal;
  color: white;
  height: 100vh;
  overflow: hidden;
}

input {
  color: white;
  background: none;
  border: none;
  border-bottom: 1px solid white;
}

input::placeholder {
  color: white;
}

.hidden {
  display: none;
}

.invisible {
  opacity: 0;
}

.background-img {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.main-box {
  transition: all 0.6s ease;
  width: 100%;
  height: 100%;
  top: 30%;
  text-align: center;
  position: fixed;
  font-family: "Nunito", sans-serif;
  font-size: 250px;
}

.main-box--clicked {
  top: 10%;
  font-size: 120px;

}

#quote {
  background-color: rgba(0, 0, 0, 0.3);
  margin-top: 30px;
  font-family: "Gowun Batang";

  display: flex;
  flex-direction: column;


}
#quote span{
  transition: all 0.6s ease;
}
#quote span:first-child{
  font-size: 40px;
}
#quote span:last-child {
  margin-top: 15px;
  font-size: 30px;
}
#quote span.quote__first-child--clicked{
  font-size: 25px;
}
#quote span.quote__last-child--clicked{
font-size:19px;
}
.main-box__gradation {
  height: 100px;
  width: 100%;
  bottom: 0px;
  position: fixed;
  transition: all 0.6s ease;
  opacity: 0;
}

.main-box__gradation--mouseover {
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3));

  opacity: 1;
}

.main-box__gradation--clicked {
  display: none;
}

.main-box__arrow {
  width: 100%;
  height: 30px;
  display: flex;
  justify-content: center;
  position: fixed;
  bottom: 20px;
  font-size: 50px;
  opacity: 1;
  transition: all 0.6s ease;
}

.main-box__arrow--mouseover {
  transform: translateY(-30px);
}

.main-box__arrow--clicked {
  transform: translateY(-55vh) rotateZ(180deg);
}
.main-box__arrow--clicked-and-mouseover {
  transform: translateY(-56vh) rotateZ(180deg);
}




#weather {
  margin: 10px;
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  right: 0px;
  top: 0px;
}

#weather span:first-child {
  font-size: 20px;
}

.loginForm,
#greeting {
  margin: 10px;
  position: fixed;
  top: 0px;
  left: 0px;
  font-size: 30px;
  font-family: "Nunito";
}

.todo-box {
  padding: 10px;
  background-color: rgba(0, 0, 0, 0);
  width: 100%;
  height: 55%;
  position: absolute;
  bottom: -60%;
  transition: all 0.6s ease;
}

.todo-box--clicked {
  bottom: 0px;
  background-color: rgba(0, 0, 0, 0.8);
  height: 55%;
}

.todo-box__title {
  font-size: 30px;
  font-weight: 700;
}

#todo-form {
  margin-top: 10px;
  width: 500px;
  font-size: 30px;
  display: flex;
  justify-content: center;
  position: flex;
}

#todo-form>input {
  width: 500px;
  text-align: center;
}

#todo-list {
  margin-top: 10px;
}