html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}
body {
  background-color: rgb(53, 52, 59);
  color: rgb(53, 52, 59);
  font-family: "Noto Sans KR", sans-serif;
}
ul,
li {
  list-style: none;
}

.chrome {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;

  /* text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */
}

.js-clock {
  color: white;
  font-size: 3em;
}

input[type="text"]:focus {
  outline: none;
}
input::placeholder {
  color: white;
  text-align: center;
}
.user-name {
  color: white;
  border-style: none;
  border-bottom: white solid 1px;
  background-color: rgba(240, 248, 255, 0);
  font-size: 1.5em;
  margin-bottom: 50px;
}
.form {
  display: none;
}
.greetings {
  display: none;
}
.js-greetings {
  color: white;
  font-size: 1.8em;
}
.write-ToDo {
  color: white;
  border-style: none;
  border-bottom: white solid 1px;
  background-color: rgba(240, 248, 255, 0);
  font-size: 1.2em;
}
.js-toDoList {
  color: white;
  font-size: 1.1em;
  height: 200px;
  overflow-y: scroll;
  padding: 0;
}
.js-toDoList::-webkit-scrollbar {
  /* display: none; */
  width: 10px;
}
.js-toDoList::-webkit-scrollbar-track {
  background-color: rgba(240, 248, 255, 0);
}
.js-toDoList::-webkit-scrollbar-thumb {
  background-color: rgba(219, 216, 216, 0.603);
}
.js-toDoList > li {
  padding: 6px;
}
button {
  background-color: rgba(240, 248, 255, 0);
  border: none;
  cursor: pointer;
  outline: none;
}
.showing {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.bgImage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  animation: fadeIn 0.5s linear;
  filter: brightness(70%);
}
.js-weather {
  color: white;
  font-size: 1.2em;
  font-style: italic;
  position: absolute;
  top: 10px;
  right: 15px;
}

@media screen and (max-width: 768px) {
  .js-clock {
    font-size: 1.5em;
  }
  .user-name {
    margin-bottom: 30px;
  }
  .js-toDoList {
    height: 200px;
  }
}
