/* Sfondo e base */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-image: url('/img/background.png'); /* puoi mettere un’immagine qualsiasi */
    background-size: cover;
    background-position: center;
	background-repeat: no-repeat;
    text-align: center;
    color: white;
	background-color: black;
}

/* Titolo e testo colorato */
h1 {
    margin-top: 50px;
    font-size: 50px;
    color: yellow;
}

.testo-colorato {
    font-size: 40px;
    color: red;
}

/* Pulsanti */
.pulsante {
    display: inline-block;
    margin: 20px;
    padding: 15px 25px;
    background-color: rgba(0,0,0,0.5);
    color: white;
    text-decoration: none;
    font-size: 18px;
    border-radius: 10px;
    transition: 0.3s;
}

.pulsante:hover {
    background-color: rgba(255,255,255,0.3);
    color: black;
}

/* Cubo che gira */
.cubo {
    width: 100px;
    height: 100px;
    background-color: blue;
    margin: 50px auto;
    animation: ruota 3s infinite linear;
}

/* testo che pulsa */
.animatedtext {
    animation: pulse 2s infinite;
}

@keyframes ruota {
    from { transform: rotateY(0deg) rotateX(0deg); }
    to { transform: rotateY(360deg) rotateX(360deg); }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}