body {
  margin: 0;
  padding: 0;
  height: 100vh;
  background-image: linear-gradient(rgb(117, 180, 0), rgba(0, 255, 42, 0.685));
}

/* Botão de música fixo no canto superior esquerdo */
#btn-musica {
  position: fixed;
  top: 10px;
  left: 10px;
  width: 80px;
  height: 80px;
  cursor: pointer;
  z-index: 1000;
  transition: transform 0.2s;
  position: absolute;
  top: 5vh;
  left: 2vw;
  border: 3px double greenyellow;
  border-radius: 100%;
  background-image: url("../assets/img/imagem_som_legal.png");
}

/* Efeito hover */
#btn-musica:hover {
  transform: scale(1.1);
}
h1 {
  position: absolute;
  align-items: center;
  top: 8vh;
  left: 45vw;
  font-size: 30px;
}
p{
  font-size: 25px;

}
h1:hover {
  transform: scale(1.05);
  color: rgb(58, 228, 148);
}
.container {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60vw;
  height: 50vh;
  transform: translate(-50%, -50%);
  text-align: center;
  background-color: rgb(30, 177, 25);
  border: 3px double rgb(8, 29, 19);
  border-radius: 10px;
  color: white;
}
marquee {
  position: absolute;
  top: 70vh;
  left: 0;
}
.lixo {
  position: absolute;
  top: 15vh;
  left: 0vw;
}

button {
  position: absolute;
  top: 5vh;
  right: 5vw;
  height: 35px;
  width: 105px;
  background-color: #066409;
  color: white;
  font-size: 18px;
  border: 1.5px double white;
  border-radius: 5px;
  margin-top: 5px;
  cursor: pointer;
}
button:hover {
  background-color: #64c267;
  transform: scale(1.05);
}

#btn-pause {
  width: 500px;
  height: 500px;
  display: none;
  visibility: hidden;
}
