html, body{
    margin: 0;
    padding: 0;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    background-color: rgb(196, 198, 200);
}

.conteiner{
    display: flex;
    /* justify-content: center; */
    align-items: center;
    text-align: center;
    flex-direction: column;
}

.img-title{
    width: 60%; 
    height: auto;
    padding: 0;
}

h1{
    color: #70d2f0;
    -webkit-text-stroke-width: 0.4px;
    -webkit-text-stroke-color: rgb(0, 0, 0);
}

.form-input{
    padding: 3px 6px;
}

.chiudi{
    display: none;
}

.firework-container{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    overflow: hidden;
}
.particle {
    position: absolute;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* BOTTONE */
.botton{
    background-color: rgb(4, 74, 131);
    display: inline-block;  /* inline-block così il pulsante sarà lungo solo la lunghezza del padding che gli diamo mentre se era solo block si sarebbe preso tutta la lunghezza dello schermo disponibile */
    padding: 15px 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 13px;
 }
 .botton:hover{
    background: #076f91;
 }





/* UTILITES */
.grid{
    display: flex;
    padding: 0 10%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.text-center{
    text-align: center;
}

.col-20{width: 20%; padding: 3% 20px;}
.col-25{width: 25%; padding: 3% 20px;}
.col-30{width: 30%; padding: 3% 20px;}
.col-50{width: 50%; padding: 3% 20px;}
.col-40{width: 40%; padding: 3% 20px;}
.col-60{width: 60%; padding: 3% 20px;}
.col-33{width: 33.33%; padding: 3% 20px}
.col-100{width: 100%; padding: 1% 0px}

@media (max-width: 768px){
    
    .col-20,
    .col-25,
    .col-30,
    .col-33,
    .col-40,
    .col-50,
    .col-60,
    .col-100{width: 100%;}

    
    
    .wrap{flex-wrap: wrap;} 
    .reverse{flex-direction: column-reverse;}
    #message-rimanente{font-size: 14px;}
}




/* Scrittura macchina da scrivere*/
.scrivere {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Courier New', monospace;
    font-size: 22px;
    white-space: pre-line;
    max-width: 70%;
    width: fit-content;
    font-weight: bold;
}

.text{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    
}

.cursor {
    width: 2px;
    height: 26px;
    background: black;
    animation: blink 0.8s infinite; 
}
.sequenza{
    border: 3px solid #eceaea;
    width: 300px;
    height: 100px;
    background-color: black;
    color: #fff;
}

@keyframes blink {
    50% { opacity: 0; }
}

@media (max-width: 768px){
    .scrivere{
        font-size: 16px;
    }
    .sequenza{
        width: 220px;
        height: 76px;
    }
    h3{
        font-size: 20px;
    }
}
