* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-image: url("./Images/Apresentação1.jpg");
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
  font-family: "Bubblegum Sans", cursive;
}
body:hover {
  cursor: default;
}
.apresentacao {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  height: 250px;
  font-size: 1.5em;
}
h1 {
  font-family: "Stalinist One", cursive;
}
h4 {
  border-top: rgb(0, 0, 0) 3px dashed;
  border-bottom: rgb(0, 0, 0) 3px dashed;
  background-color: rgba(221, 180, 127, 0.767);
}
.personagens {
  display: flex;
  justify-content: center;
}
.personagens ul {
  list-style: none;
  text-align: center;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 90%;
  height: 300px;
}
.personagens img {
  width: 200px;
  border-radius: 15px;
}
.personagens li {
  font-size: 25px;
  padding: 15px 10px;
  border: rgba(0, 0, 0, 0) 3px dashed;
  border-radius: 10px;
  transition: all 1s;
}
.personagens li:hover {
  border: rgb(0, 0, 0) 3px dashed;
  border-radius: 20px;
  background-color: rgba(221, 180, 127, 0.767);
  transition: 2s;
}

.personagens a {
  text-decoration: none;
  color: black;
}
footer {
  background-color: antiquewhite;
  width: 100%;
  height: 50px;
  text-align: center;
  padding-top: 15px;
}
footer a {
  text-decoration: none;
  color: black;
  font-weight: bold;
}

@media (max-width: 680px) {
  .personagens img {
    width: 100px;
  }
}
@media (max-width: 380px) {
  body {
    height: 140vh;
  }
  .personagens ul {
    flex-direction: column;
    justify-self: flex-end;
  }
  .personagens li {
    font-size: 15px;
  }
  h1 {
    font-size: 20px;
    margin-top: 20px;
  }
  h3 {
    display: none;
  }
  h4 {
    margin-top: 20px;
  }
  .apresentacao {
    display: block;
  }
}
