@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600&display=swap');

.hidden {
  display: none;
}

body {
  font-family: 'Nunito', sans-serif;
}

img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0.6;
  width: 100%;
  height: 100%;
}

#clock {
  font-size: 450%;
  font-weight: bold;
}

#weather {
  position: absolute;
  top: 0;
  right: 0;
  margin: 20px;
  opacity: 0.8;
}

#weather span:first-child {
  padding-right: 10px;
}
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  margin-top: 150px;
  color: white;
}

.greeting-area {
  opacity: 0.8;
}

.btn-flex {
  display: flex;
  justify-content: center;
  flex-direction: center;
  align-items: center;
  margin-top: 10px;
}

.greeting-input {
  width: 300px;
  height: 70px;
  text-align: center;
  background-color: transparent;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 3px solid rgb(255, 255, 255);
  font-weight: bolder;
  font-size: 20px;
  margin-right: 10px;
  outline: none;
}

.greeting-btn {
  background-color: transparent;
  text-align: center;
  font-size: 30px;
  margin-left: 10px;
  font-weight: bolder;
  color: #6d6f71;
  border: none;
  font-weight: 600;
}

.input-area {
  width: 400%;
  height: 35%;
  text-align: center;
  padding-top: 20px;
  border-bottom: 5px double rgb(255, 255, 255);
  padding-bottom: 25px;
  background-color: transparent;
  /* input배경색상 뒷배경과 동일하게 만들기 */
  border-top: none;
  border-left: none;
  border-right: none;
  margin-top: 10px;
}

.input-area:focus {
  outline: none;
  /* input테두리없애기 */
}

#todo-list ul {
  text-align: center;
}

#todo-list li {
  font-size: 20px;
  margin-top: 10px;
  font-weight: bolder;
}

#todo-list button {
  background-color: transparent;
  border: none;
  font-size: 20px;
  margin-left: 5px;
}

.quote-area {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  color: white;
}
