.hidden {
  display: none !important;
}

.bold {
  font-weight: 700;
}

* {
  padding: 0;
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

ul,
ol,
li {
  list-style: none;
}

html,
body {
  width: 100%;
  height: 100%;
}

body {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#logout-box {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
}

#logout-box .profile {
  background-color: rgba(255, 255, 255, 0.3);
  width: 150px;
  height: 150px;
  border-radius: 1000px;
  margin: 0 auto 40px;
  text-align: center;
  line-height: 160px;
  font-size: 80px;
  backdrop-filter: blur(5px);
  box-shadow: 0 3px 25px -20px #000;
}

#logout-box label {
  display: block;
  text-align: center;
  font-weight: 600;
  color: #fff;
  text-shadow: 0px 0px 4px black;
  margin-bottom: 20px;
}

#logout-box input {
  outline: none;
  border: none;
  padding: 10px 15px;
  border-radius: 100px;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  box-shadow: 0 3px 25px -20px #000;
  color: #fff;
}

#logout-box input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

header {
  padding: 5px 20px;
  font-size: 14px;
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(30px);
  display: flex;
  justify-content: space-between;
}

header ul {
  display: flex;
  gap: 25px;
}

footer {
  position: absolute;
  bottom: 10px;
  width: 90%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(30px);
  padding: 20px;
  border: 1px solid rgba(155, 155, 155, 0.4);
  border-radius: 25px;
  box-shadow: 0 3px 25px -20px #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer #quotes {
  text-align: center;
  flex: 1;
}

footer .quote {
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
}

footer .author {
  display: block;
  font-weight: 100;
  margin-top: 10px;
}

#reset {
  width: 70px;
  height: 70px;
  border: none;
  background: transparent url("../img/apple-settings.svg") no-repeat center /
    cover;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}

#reset:hover {
  transform: scale(1.1);
}

#reset::before {
  content: "";
  position: absolute;
  border-style: solid;
  border-width: 12px 10px 0 10px;
  border-color: #000 transparent transparent transparent;
  left: 50%;
  top: -55%;
  transform: translateX(-50%);
  display: none;
}

#reset::after {
  content: "Reset";
  position: absolute;
  left: 50%;
  top: -80%;
  transform: translateX(-50%);
  background: #000;
  padding: 3px 25px;
  color: #fff;
  border-radius: 5px;
  display: none;
}

#reset:hover::after,
#reset:hover::before {
  display: block;
}

#todo-box {
  width: 500px;
  background-color: #fff;
  position: absolute;
  border-radius: 10px;
  padding: 20px;
  left: 20%;
  top: 100px;
  border: 1px solid rgba(155, 155, 155, 0.4);
  box-shadow: 0 3px 40px -20px #000;
}

#todo-box .todo-header {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
}

#todo-box .todo-header #total-todo {
  color: #007aff;
  font-size: 35px;
}

#todo-box .todo-header span {
  width: 14px;
  height: 14px;
  display: inline-block;
  margin-right: 5px;
  border-radius: 100px;
}

#todo-box .todo-header span:nth-child(1) {
  background-color: #fe5f58;
}
#todo-box .todo-header span:nth-child(2) {
  background-color: #febc2c;
}
#todo-box .todo-header span:nth-child(3) {
  background-color: #28c840;
}

#todo-box .todo-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

#todo-box .todo-info #clock {
  font-variant-numeric: tabular-nums;
}

#todo-box .todo-list input {
  width: 100%;
  outline: none;
  border: none;
  padding: 10px 15px;
  border-radius: 100px;
  background-color: #d8d8d8;
  box-shadow: 0 3px 25px -20px #000;
  box-sizing: border-box;
  transition: all 0.2s;
}

#todo-box .todo-list input::placeholder {
  opacity: 0.5;
}

#todo-box .todo-list input:focus {
  background-color: #eee;
}

#todo-box .todo-list ul {
  height: 400px;
  overflow: scroll;
  margin-top: 20px;
}

#todo-box .todo-list li {
  padding: 10px;
  border-bottom: 1px solid #d8d8d8;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#todo-box .todo-list .delete-btn {
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  transition: all 0.2s;
}

#todo-box .todo-list .delete-btn:hover {
  transform: scale(1.1);
}

#weather-box {
  width: 300px;
  background-color: #fef49c;
  position: absolute;
  padding: 20px;
  right: 20%;
  top: 200px;
  border: 1px solid rgba(155, 155, 155, 0.4);
  box-shadow: 0 3px 40px -20px #000;
}

#weather-box h1 {
  margin-bottom: 20px;
}

#weather-box li {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#weather-box li > span:last-child {
  font-size: 18px;
  font-style: italic;
}
