html {
  width: 100%;
  height: 100%;
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
}
body {
  height: 100vh;
  overflow: hidden;
}
form {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
}
h3 {
  margin: 0;
  font-weight: 600;
}
input::placeholder {
  color: #060606;
  opacity: 1;
}
input:focus {
  outline: none;
}
input:focus::placeholder {
  color: transparent;
}

.hidden {
  display: none;
}

#clock,
#clock_geneve {
  display: flex;
  align-items: end;
  justify-content: end;
  font-size: 50px;
  opacity: 0.8;
  margin: 4px 13px;
  text-shadow: 1px 1px 2px rgb(238, 175, 183), 0 0 1em #162747,
    0 0 0.2em #353132;
  color: azure;
}

#clock_geneve {
  color: rgba(0, 0, 0, 0.95);
  margin-bottom: 20px;
}

#weather {
  flex-direction: column;
  display: flex;
  align-items: center;
  position: absolute;
  right: 0;
  margin: 20px 30px 0 0;
  gap: 5px;
}

#geneve,
#seoul {
  display: flex;
  border-radius: 10px;
  padding: 3px 10px;
  opacity: 0.75;
  width: 90%;
  text-align: center;
  font-size: small;
}

#geneve {
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
}

#seoul {
  background-color: #fff;
  opacity: 0.8;
  color: #000;
}

#contents {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#form {
  height: 40px;
  width: auto;
  background-color: transparent;
  margin-top: 110px;
}

#login-form {
  opacity: 0.8;
  border-bottom: #fff 2px solid;
  height: 40px;
  background-color: transparent;
}

#submit_field {
  height: 40px;
  border: none;
  background-color: transparent;
  color: #fff;
  font-size: 20px;
  text-align: center;
  font-size: 25px;
}

#submit_field::placeholder {
  color: #fff;
}

#submit_field:focus::placeholder {
  color: transparent;
}

#submit_button {
  display: none;
}

#greeting {
  color: #fff;
  letter-spacing: 1.5px;
  margin: 0px;
}

#todo-form {
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 10px;
}

#todo_section {
  background-color: #fff;
  opacity: 0.7;
  border-radius: 10px;
  margin: 20px;
  width: 35vw;
  overflow: scroll;
  height: 50vh;
}

#todo-list {
  display: flex;
  flex-direction: column;
  padding: 0;
}

#todo-form input {
  border: none;
  background-color: transparent;
  border-bottom: 2px solid #000;
  font-size: 20px;
  padding: 10px;
  margin: 10px;
  color: #353132;
  width: 47%;
  text-align: center;
}

button {
  padding: 8px;
  background-color: transparent;
  border: none;
  font-size: 23px;
  color: #353132;
  margin-left: 15px;
}

input[type="checkbox"] {
  margin-right: 20px;
  transform: scale(1.5);
}

#quote {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  position: fixed;
  bottom: 30px;
}
img {
  width: 100vw;
  height: 100vh;
  top: 0px;
  left: 0px;
  position: absolute;
  opacity: 0.8;
  z-index: -1;
  filter: brightness(50%);
}

li {
  color: #353132;
  display: flex;
  align-items: center;
  font-size: 20px;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  justify-content: space-between;
  width: 70%;
  align-self: center;
}

li span {
  flex: 1; /* span이 남은 공간을 차지하도록 설정 */
  word-wrap: break-word; /* 긴 단어가 있으면 자동으로 줄바꿈 */
}

#loadingSpinner,
#loadingSpinner2 {
  border: 4px solid rgba(0, 0, 0, 0.8);
  border-top: 4px solid #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spinning 1s infinite linear;
}
@keyframes spinning {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
