* {
  margin: 0;
  padding: 0;
}

body {
  background-image: url("img/fundo.jpg");
  background-size: cover;
}

.container {
  background-color: rgba(110, 90, 90, 0.543);
  width: 20rem;
  border-radius: 10px;
  padding: 2rem;
  margin: auto;
  margin-top: 5%;
}

.incluir {
  border: none;
  border-radius: 5px;
  width: 50%;
  height: 2rem;
  padding-left: 4rem;
}

.botao {
  border: none;
  border-radius: 5px;
  height: 2rem;
  background-color: #092302;
  color: #ffffff;
  font-size: 17px;
  margin-top: 0.35rem;
  padding: 0 1rem;
  float: right;
  cursor: pointer;
  font-weight: 700;
}

.botao:hover {
  opacity: 0.7;
}

.botao:active {
  opacity: 0.3;
}

.listar {
  width: 100%;
  list-style: none;
  margin-top: 30px;
}

.atividades {
  background-color: #F2F2F2;
  box-shadow: 1px 4px 10px rgba(0, 0, 0, 0.2);
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  border-radius: 5px;
  margin-bottom: 20px;
  cursor: pointer;
}

img {
  height: 25px;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.atividades:hover img {
  opacity: 0.8;
}

section,
html {
  font-family: 'Kaushan Script', cursive;
  font-size: 150%;
}

.done {
  background-color: rgb(80, 207, 42);
  text-decoration: line-through;
}

footer {
  font-family: Arial, Helvetica, sans-serif;
  position: absolute;
  text-align: center;
  font-size: small;
  width: 100%;

}