body {
  font-family: Arial, sans-serif;
  background-color: #000000;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100vh;
}

h1 {
  background: transparent;
  text-align: center;
  padding: 10px;
  transition: all 0.3s ease;
  border-radius: 8px;
}

h1:hover {
  backdrop-filter: blur(10px);
  padding: 15px;
  border-radius: 12px;
}

#date {
  font-size: 16px;
  margin-bottom: 100px;
  position: absolute;
  top: -1px;
  margin-top: 30px;
  left: 9%;
  transform: translateX(-50%);
  color: white;
}

#taskList {
  list-style-type: none;
  padding: 0;
  max-height: 300px;
  overflow-y: scroll;
  display: flex;
  flex-direction: column-reverse;
}

#time {
  font-size: 95px;
  margin-bottom: 100px;
  position: absolute;
  top: -1px;
  margin-top: 230px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
}

.todo-container {
  margin-top: 330px;
  color: white;
}

ul {
  list-style-type: none;
  padding: 0;
}

#taskInput {
  font-size: 16px;
  width: 300px;
  margin-bottom: 10px;
  background-color: transparent;
  border: none;
  border-bottom: 2px solid #ffffff;
  outline: none;
  color: white;
  transition: border-color 0.3s ease;
}

#taskInput:hover {
  border-color: #ffffff;
  backdrop-filter: blur(5px);
  border-radius: 5px;
}

li {
  margin: 10px 0;
  padding: 10px;
  background-color: transparent;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

li span {
  flex: 1;
}

li button {
  background-color: #454141;
  background-color: transparent;
  border: none;
  padding: 6px 10px;
  border-radius: 4px;
  cursor: pointer;
}

button {
  padding: 10px 20px;
  font-size: 16px;
  background-color: transparent;
  color: rgba(255, 255, 255, 0.679);
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  border-color: #ffffff;
  backdrop-filter: blur(5px);
  border-radius: 5px;
}

input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-right: 12px;
}
span {
  font-size: 16px;
}

.name {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 19px;
  margin-top: 150px;
  color: rgb(170, 157, 157);
}

#weather-icon {
  width: 40px;
  height: 50px;
  border-radius: 5px;
  margin: 5px;
}
#weather {
  text-align: right;
  color: #fff;
  position: absolute;
  top: 15px;
  right: 15px;
  size: small;
}

#weather-info {
  font-size: 16px;

}

#unsplashImage {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(70%);
}

.imageDetails {
  background-color: black;
  margin-top: 50px;
  padding: 10px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  width: fit-content;
}
