* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#sfondo {
    background-image:linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url("../images/background.png");
    background-size: cover;
    background-position: top;
    background-attachment: fixed;
    backdrop-filter: blur(5px);
}

#play {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 60px;
}

#play img{
    width: 100%;
}

#title {
    font-family: 'Mochiy Pop One', sans-serif;
    font-size: 4rem;
    /*color: rgb(255, 122, 0);*/
    text-shadow: 3px 2px 2px #1a1e21;
}

.sottotitolo {
    font-size: 1.3em;
}

#primo {
    color: rgb(241, 169, 60);
}

#secondo {
    color: rgb(77, 170, 184);
}

.titoletti {
    font-size: 1.5em;
}

@media (max-width: 768px) {
    #title {
        font-size: 2.5rem;
    }

    .sottotitolo {
        font-size: 1em;
    }

    .titoletti {
        font-size: 1.2em;
    }
}