@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200;600&display=swap");

/* font-family: 'Manrope', sans-serif; */

/* font-family: 'DM Serif Display', serif; */

body {
  font-family: "Manrope", sans-serif;
  margin: 0;
  height: 100vh;
  color: white;
  overflow: hidden;
}

.hidden {
  display: none;
}

#bgImg img {
  position: absolute;
  background-size: cover;
  object-fit: cover;
}

#login-word {
  font-family: "DM Serif Display", serif;
  font-weight: 600;
  position: absolute;
  /* 부모 요소의 가운데 위치 */
  top: 40%;
  /* 부모 요소의 상단 가장자리에서 50% 떨어진 위치로 이동 */
  left: 50%;
  /* 부모 요소의 왼쪽 가장자리에서 50% 떨어진 위치로 이동 */
  transform: translate(-50%, -50%);
  /* 요소의 중심이 부모 요소의 중심에 정확하게 맞도록, 가로세로 적용 */
  color: white;
  font-size: 60px;
  font-weight: bold;
}

#login-form {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#login-form input {
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 2px solid white;
  background: transparent;
  height: 40px;
  width: 280px;

  font-size: 20px;
  text-align: center;
  color: #dedddd;
}

input::placeholder {
  color: #dedddd;
}

#login-form button {
  display: none;
}

#clock {
  font-family: "DM Serif Display", serif;
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 140px;
  font-weight: bold;
  /* border: 1px solid (255, 255, 255, 0.5);
  border-radius: 30px;
  padding: 0px 25px;
  background-color: rgba(255, 255, 255, 0.25); */
}

#greeting {
  font-family: "DM Serif Display", serif;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 41px;
  font-weight: 600;
}

#todo-form {
  position: absolute;
  top: 57%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#todo-form input {
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 2px solid white;
  background: transparent;
  height: 40px;
  width: 280px;

  font-size: 20px;
  text-align: center;
  color: #dedddd;
}

#todo-list {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, 0%);
  font-size: 25px;
  font-weight: bold;

  width: 300px;
  max-height: 170px;
  overflow-y: scroll;

  border: 1px solid (255, 255, 255, 0.5);
  border-radius: 28px;
  background-color: rgba(255, 255, 255, 0.25);

  text-align: center;
  list-style: none;
  padding-left: 0;
}

::-webkit-scrollbar {
  display: none;
}

#todo-list button {
  margin-left: 10px;
  border: none;
  border-radius: 4px;
  vertical-align: middle;
  cursor: pointer;
}

#quote {
  width: 2000px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  line-height: 30px;
}

#weather {
  position: absolute;
  top: 7%;
  left: 8%;
  transform: translate(-30%, -50%);
  font-size: 25px;
}
