@charset "UTF-8";
body {
  background: url("../img/bg.jpg") no-repeat center
    center fixed;
  background-size: cover;
  font-family: "Gabarito", sans-serif;
  margin: 20px;
  display: flex;
  flex-direction: column;
}

.logo {
  position: absolute;
  top: 10px;
  right: 10px;
  max-width: 300px;
  max-height: 300px;
}

.logo img {
  width: 80%;
}

.titulo{
  background: rgba(0, 0, 0, 0.8);
}

.conteudo-jogo {
  background: rgba(0, 0, 0, 0.61);
  box-shadow: 0 0 5px #ff1b7b;
  margin: 30px;
  padding: 20px;
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

h2, p {
  color: rgb(230, 219, 219);
}

button {
  padding: 10px 20px;
  margin: 10px;
  border: none;
  background: #ff1b7b;
  color: white;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #19caca;
}

footer {
  text-align: center;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 10px;
  position: relative;
  width: 100%;
  bottom: 0;
  margin-top: 295px;
  margin-left: -10px;
}