* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Verdana, Tahoma, sans-serif;
}

body {
  background: url(../images/floresta1.jpg) fixed;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.personagemFlex {
  max-width: 100vw;
  height: calc(100vh - 20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.displayPersonagem {
  background-image: url(../images/green.jpg);
  width: 650px;
  height: 501px;
  opacity: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 3px solid rgba(238, 241, 4, 0.979);
}

article > .texto-principal {
  padding: 0 11.2% 3% 12.5%;
}

article p + p {
  padding: 0 0 3% 0;
  font-weight: bold;
}

footer {
  height: 20px;
}

.rodape {
  background-color: rgba(0, 0, 0, 0.411);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  width: 100%;
  height: 100%;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  color: white
}

.displayPersonagem button {
  background-color: rgba(39, 128, 58, 0.9);
  border: 1px inset #4c755f;
  border-radius: 5px;
  width: 85px;
  height: 30px;
  display: inline-block;
  font-weight: bold;
  font-size: 12px;
  cursor: pointer;
  transition: 0.4s
}

.displayPersonagem button:hover {
  font-size: 13px;
  background-color: rgba(26, 187, 11, 0.5);
  box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}

@media (max-width: 600px) {
  .displayInicio,
  .displayPersonagem,
  .displayPersonagens {
    width: 90%;
    height: auto;
    padding: 1rem;
  }

  .texto-principal {
    font-size: 1rem;
    padding: 1rem;
  }

  h1 {
    font-size: 1.8rem;
    text-align: center;
  }

  .personagens ul {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .personagens img {
    width: 6rem;
    height: auto;
  }

  .rodape {
    font-size: 12px;
  }

  button {
    width: 100%;
    font-size: 1rem;
  }
}