@font-face {
    font-family: 'Dutch';
    src: url('font/dutch.ttf') format('truetype'); 
}
@font-face {
    font-family: 'DutchB';
    src: url('font/dutcheb.ttf') format('truetype'); 
}


body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f9f9f9;
    font-family: 'Dutch', sans-serif;
    font-size: 21px;
    text-align: center;            
}

h1 {
    font-family: 'DutchB', sans-serif;
    font-size: 30px;
    margin-bottom:0;
}

a{
    text-decoration: none;
    color: #000;
}

a:hover{
    text-decoration: underline;
    color: #000;
}

video {
    max-width: 445px;
    width: 100%;
    height: auto;
    border:none;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;    
}

#container{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width:300px;
}

#NOcontainer {
    position: relative;
    overflow: hidden;
}
#tendina {
    width: 100%; /* Inizialmente espansa */
    height: 100%;
    background-color: #ffffff; /* Colore dello sfondo della tendina */
    position: absolute;
    right: 0; /* Parte dalla destra */
    top: 0;
    z-index: 2; /* Sopra l'immagine */
    transition: width 1s ease; /* Transizione per l'animazione */
}

.testo {
    opacity: 0;
    transition: opacity 1s;
}

p#descr{
    margin-top:0;
    margin-bottom: 150px;
    padding-top:0
    opacity: 1;
    transition: opacity 0.5s;
}

.info p{
    font-size: 16px;
    line-height: 25px;
}

img#myImage {
    opacity: 0;
    transition: opacity 1s, transform 1s;
                max-width: 100%;
            height: auto;
            position: relative;
            z-index: 1; /* Dietro la tendina */
}