body {
    margin: 0;

    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    background-color: #fff8f5;

    font-family: sans-serif;
}

#app {
    text-align: center;
}

h1 {
    font-size: 32px;
    font-weight: normal;
    margin-bottom: 2px;
}

#fiore {
     position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#istruzione {
    font-size: 20px;
    margin-top: 10px;

    opacity: 0;

    animation: comparsa 3s ease-in  2s forwards;
}
#fiore video {
    width: 1100px;
    max-width: 80vw;
    justify-content: center;
    align-items: center;
    height: auto;
}

@keyframes comparsa {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
#animazioneBrilla {
    display: none;
}
#animazionecolorata {
    display: none;
}

#videoricordo1 {
    display: none;
    width: 75vw;
    max-width: 800px;
    height: auto;
    margin: 0 auto;
}
#messaggioFinale{
    display: none;
    font-size: 20px;
    margin-top: 10px;
}