* {
  box-sizing: border-box;
  margin: 0;
  padding: 0%;
}

body {
  text-align: center;
  font-family: "Quicksand", sans-serif;
  background-size: 2000px 1000px;
  background-color: black;
  background-position: cover;
  background-repeat: no-repeat;
  transition: 0.5s;
}

.main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 90vh;
}

h1,
h2,
h5,
h6 {
  color: white;
}

#time {
  font-size: 8rem;
  color: white;
}

h1 {
  margin-bottom: 3rem;
}

#name:hover {
  color: rgb(206, 206, 206);
}

#name:focus {
  outline: none;
}

h2 {
  margin-bottom: 0;
}

#focus {
  margin-bottom: 1em;
}

#focus:hover {
  color: rgb(206, 206, 206);
}

#focus:focus {
  outline: none;
}

.quote {
  margin-top: 2rem;
}

#content {
  font-size: 1rem;
  margin: 0;
}

#author {
  font-size: 0.8rem;
  margin: 10px 0;
}

.todo-list {
  margin-top: 2rem;
}

.popup {
  display: none;
  position: fixed;
  top: 30%;
  left: 0;
  width: 100%;
  height: 100%;
}

.popup-content {
  background-color: rgb(255, 255, 255);
  width: 250px;
  padding: 20px;
  margin: 100px auto;
  border-radius: 30px;
}

.popup-content h2 {
  margin-top: 0;
  color: rgb(78, 78, 78);
}

.popup-content input {
  width: 100%;
  margin-bottom: 10px;
  padding: 2%;
  border: none;
  text-align: center;
}

#popup-content input:hover {
  background-color: rgb(206, 206, 206);
}

.popup-content button {
  display: block;
  margin-bottom: 10px;
  border: none;
  cursor: pointer;
  padding: 1%;
  font-family: "Quicksand", sans-serif;
  font-weight:
}

#add-task-btn {
  width: 100%;
}

.task-item.completed {
  text-decoration: line-through;
}

#open-popup-btn {
  background-color: transparent;
  outline: none;
  cursor: pointer;
  color: white;
  font-family: "Quicksand";
  border: none;
  text-decoration: underline;
  font-size: 1rem;
}

#close-popup-btn {
  position: relative;
  top: 9%;
  left: 80%;
  border: none;
  background: none;
  cursor: pointer;
  margin: 0;
  padding: 0;
}

#task-list {
  list-style-type: none;
  padding: 0;
}

.task-item {
  position: relative;
  padding: 3px;
  border-bottom: 1px solid #ccc;
}

.task-text {
  display: inline-block;
  text-align: ;
}

.delete-button {
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translate(30%, -50%);
  background-color: white;
  padding: 5px 10px;
  border: none;
  cursor: pointer;
}
