*{
    font-family: 'Pixelify Sans', cursive;
    color: rgb(0, 0, 0);
}

body {
    display: flex;
    flex-direction: column;       /* Disposizione verticale */
    justify-content: center;      
    align-items: center;          
    min-height: 100vh;            
    margin: 0;
}

#titolo { 
    font-size: 40px;
}

#timer {
    font-family: 'Micro 5', sans-serif;
    font-size: 50px;
    margin-top: 20px;
}

#contenitore {
    flex-grow: 1;                   /* Fa espandere il contenitore per riempire lo spazio */
    position: relative;            
    width: 500px;
    height: 500px; 
    min-height: 500px;             
    background-image: url('img/sfondo.png');
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

button {
    background: none;  
    border: none;      
    padding: 0;         
    cursor: pointer;    /* Cambia il cursore al passaggio del mouse */
    outline: none;      
}

button img {
    display: block;     
}

#bottoni {
    display: flex;
    justify-content: center;  
    gap: 10px;                
    margin-top: 20px;         
}

#contenitore_gif {
    position: absolute;
    bottom: 0;                  
    left: 50%;
    transform: translateX(-50%); /* mantiene la centratura */
    margin-bottom: 10px;        
}

#credits {
    text-align: center;
    margin-bottom: 10px;
    font-size: 20px;
}
