body {
  justify-content: center;
  align-items: center;
  height: 100vh;
}
div.container {
  width: 80vw;
  height: 90vh;
  background-color: antiquewhite;
  border-radius: 1.5rem;
  box-shadow: 0.35rem 0.35rem rgba(0, 0, 200, 0.5);
  font-family: "Kanit", serif;
  position: relative;
  padding: 1rem;
  overflow-y: auto;
}
.header {
  display: block;
  margin: auto;
  text-align: center;
}
#brand-name {
  font-size: 3rem;
  margin: 0.5rem 1rem;
}
#subtitle {
  font-size: 1.5rem;
  margin: 0.5rem 0;
}
.center {
  text-align: center;
  margin: 0.3rem 0;
  font-size: 1.5rem;
}
#welcome {
  font-size: 1.5rem;
}
.show {
  display: block;
}
.none {
  display: none;
}
#theme-slider {
  border-radius: 3rem;
  background-color: white;
  height: 3rem;
  width: 6rem;
  position: relative;
  padding: 0 0.5rem;
}
header {
  font-size: 2rem;
  font-weight: bold;
}

.between {
  justify-content: space-between;
}
section {
  padding: 0.4rem 1.5rem;
}
#slider img {
  width: 66%;
}
.not {
  box-shadow: 0.2rem 0.2rem black;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0;
  position: absolute;
}
.holder {
  display: flex;
  width: 100%;
  justify-content: flex-end;
}
.task-type {
  display: flex;
  justify-content: space-between;
}
.category {
  border-radius: 2rem;
  padding-left: 1rem;
}
.category:hover {
  box-shadow: 0.5rem 0.5rem 0 0 gray;
}
.flex {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.badge {
  border-radius: 50%;
  background-color: red;
  color: white;
  font-size: 1rem;
  text-align: center;
  width: 2rem;
  height: 2rem;
  align-self: center;
  padding: 0.1rem;
}
.task-type p {
  margin: 0.5rem;
}

.tasks li,
.task-head {
  padding: 0.5rem 0;
}
#new-task {
  border-radius: 1rem;
  height: 4rem;
  width: 4rem;
  color: white;
  background-color: rgba(0, 0, 200, 0.5);
  outline: none;
  border: none;
  font-size: 2.5rem;
}
#new-task:hover {
  box-shadow: 0.2rem 0.2rem rgba(0, 0, 200, 0.5);
  font-size: 3.5rem;
}
.button-container {
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 0;
  padding-bottom: 1rem;
  width: 100%;
}
#task-create {
  background-color: white;
  color: blue;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 1rem;
  padding: 1.5rem;
}
#task-create label {
  font-weight: bold;
  font-size: 1.5rem;
}
#task-create input,
textarea {
  outline: none;
  border: 1px solid blue;
  border-radius: 0.4rem;
  font-size: 1.5rem;
  display: block;
  margin: 0.5rem;
  width: 80%;
}
button {
  border: none;
  outline: none;
  border-radius: 1rem;
  background-color: blue;
  color: white;
}
.madone,
.delete {
  padding: 0.75rem;
  margin: 0 0.25rem;
  border-radius: 2.5rem;
}
@media screen and (max-width: 768px) {
  html,
  div.container {
    font-size: 10px;
    height: 70vh;
  }
}
