html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
body {
  display: flex;
  justify-content: space-between;
  font-family: "Roboto", sans-serif;
  text-shadow: 0 0 10px rgb(0, 0, 0, 0.3);
  color: white;
}
.hidden {
  display: none !important;
}

#clock-weather-container {
  display: flex;
}
#clock {
  font-size: 70px;
  margin: 120px 0 10px 50px;
}
#quote {
  display: flex;
  flex-direction: column;
  font-style: italic;
  /* align-items: center; */
  width: 490px;
  margin-left: 50px;
}
#quote span:first-child {
  font-size: 24px;
  margin-bottom: 10px;
}
#quote span:last-child {
  font-size: 18px;
}

#weather {
  display: flex;
  flex-direction: column;
  margin: 170px 0 0 10px;
  font-size: 18px;
}

#login {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 500;
}
#login div {
  font-size: 40px;
}
#login input {
  background-color: transparent;
  border: 0px;
  border-bottom: 1px solid white;
  outline: none;
  font-size: 30px;
  margin-top: 20px;
  width: 200px;
  color: white;
  text-align: center;
}

#login-success {
  font-size: 40px;
}
#todo-form input {
  background-color: transparent;
  border: 0px;
  border-bottom: 1px solid white;
  outline: none;
  font-size: 20px;
  width: 200px;
  color: white;
  text-align: center;
}
input::placeholder {
  color: white;
  opacity: 0.4;
}

#login-todo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 60px;
}
#todo-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#todo-list {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}
#todo-list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
  font-size: 18px;
}
#todo-list button {
  background: none;
  border: 0;
  color: white;
  cursor: pointer;
  margin-left: 10px;
  padding: 0;
  font-size: 15px;
}
