body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: "Times New Roman", Times, serif;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

h1 {
    font-size: 2vw; /* Aumenta la dimensione del testo */
    letter-spacing: 0.0em; /* Aumenta la distanza tra le lettere */
    margin: 0;
     line-height: 0.8;
    font-weight: normal; 
}

/* Nuove regole per il testo cliccabile */
#click-text {
    font-size: 20px;
    color: black;
    cursor: pointer;
    transition: color 0.3s ease;
}

#click-text:hover {
    color: red;
}