body {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #ededed;
}

nav {
  display: flex;
  align-items: center;
  padding: 20px 100px;
  background-color: #414141;
  color: white;
  font-weight: bold;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
nav .logo {
  font-size: 24px;
  border-bottom: 1px solid;
  padding-bottom: 12px;
}
nav a {
  color: white;
}
nav a:hover {
  color: #0d6efd;
}

h1 {
  padding-bottom: 32px;
}

a {
  text-decoration: none;
}

i {
  color: black;
  font-size: 20px;
}
i:hover {
  color: #0c0cd0;
}
.fa-strikethrough {
  padding-right: 12px;
}
.fa-strikethrough:hover {
  color: red;
}

button {
  border: none;
}

span {
  font-family: "Indie Flower", cursive;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
}

.container {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-wrap: wrap;
}

ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-content: center;
  padding-bottom: 24px;
}

.add-task {
  display: flex;
  justify-content: flex-end;
}
.btn-add {
  border-radius: 16px;
  padding: 4px 14px;
  font-weight: bold;
  background-color: #4d80cb;
  /* #383838 */
}
.btn-add:hover {
  background-color: #0d6efd;
}
.btn-add a {
  color: white;
}



input {
  padding: 2px 6px;
  position: relative;
  border: 2px solid #afafaf;
  border-right: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.submit-task {
  position: absolute;
  padding: 3px 12px;
  font-weight: bold;
  background-color: #0d6efd;
  color: white;
  border-bottom-right-radius: 12px;
  border-top-right-radius: 12px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
