.tasks-container {
  width: 800px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  padding: 20px;
  flex-direction: column;
  display: flex;
  justify-content: center;
  vertical-align: middle;
  align-items: center;
}

#tasks {
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: left;
}

.task {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.task b {
  color: black;
}
.task b:hover {
  color: rgb(77, 161, 169);
}
.task span {
  color: black;
}
.task em {
  font-style: normal;
  font-weight: bold;
}
.task em:hover {
  opacity: 1;
}