*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Niramit Regular', sans-serif;
    overflow-x: hidden;
}


body {
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;    

}
    
    .player-container { 
        width: 100%; 
        max-width: 800px; 
        margin: 20px ; 
        position: relative; 
    }

    #start-overlay {
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(0,0,0,0.7);
        z-index: 9999;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    #start-btn {
        padding: 15px 30px;
        background: #FFE4AA; 
        color: black;
        border: none;
        border-radius: 5px;
        font-size: 18px;
        font-weight: bold;
        margin-top: 10px;
    }

    .navbar {
    background-color: #FFE4AA;
    width: 100vw;
    display: flex;
    justify-content: start;
    align-items: center;
}

.navbar img {
    height: 120px;
    margin-right: 20px;
    padding: 10px 20px;
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar ul li {
    padding: 0 15px;
    font-weight: 400;
}

.navbar ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 18px;
}

footer {
    width: 100vw;
    height: 50vh;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #FFE4AA;
}

.parrocchia {
    font-size: 25px;
    font-weight: bold;
}

.indirizzo a{
    font-size: 18px;
    margin-top: 10px;
    font-weight: 600;
    color: #333;
}

@media screen and (max-width: 1024px) {

    .navbar img {
        height: 80px;
    }

    .navbar ul {
        justify-content: space-between;
    }

    .navbar img{
        margin-right: 10px;
        padding: 5px 10px;
    }

    .navbar ul li {
        padding: 0 10px;
    }

    .navbar ul li a{
        font-size: 15px;
    }

    footer .parrocchia {
        font-size: 20px;
    }

    footer .indirizzo {
        font-size: 15px;
    }
}