body {
  background: radial-gradient(circle at center, #0a0a2a, #000010);
  color: white;
  font-family: "Comic Sans MS", cursive, sans-serif;
  text-align: center;
  margin: 0;
  padding: 0;
}

.titulo {
  margin-top: 30px;
  font-size: 42px;
  color: #ff1744; /* vermelho sangue */
  text-shadow: 0 0 10px #ff1744, 0 0 20px #ff80ab;
}

.subtitulo {
  font-size: 18px;
  margin-bottom: 40px;
  color: #ff80ab; /* rosa clarinho */
}

.container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.caixa {
  background: #111a3a;
  border: 3px solid #ff1744;
  border-radius: 20px;
  box-shadow: 0 0 15px #ff1744, 0 0 30px #ff80ab;
  padding: 20px;
  width: 250px;
  transition: transform 0.3s;
}

.caixa:hover {
  transform: scale(1.05);
}

.caixa h2 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #ff1744;
}

.caixa ul {
  list-style: none;
  padding: 0;
}

.caixa li {
  margin: 10px 0;
}

.caixa a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

.caixa a:hover {
  color: #ff80ab;
}

.music {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #111;
  padding: 15px;
  border: 2px solid #ff1744;
  border-radius: 10px;
  box-shadow: 0 0 15px #ff1744;
}

