body, html {
    width: 100%;
    margin: 0;
    padding: 5px;
    background-color: #0f0e17;
    height: 100%;/* Evita scrollbar fastidiose */
    display: flex;
    flex-direction: column;
    font-family: "Google Sans", sans-serif;
}

* {
    box-sizing: border-box;
}

.title {
    color: #ffffff;
    
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;    
    align-items: center;
    font-size: 50px;
}
.main-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

#player-container {
    width: 50%;           /* O una misura fissa come 500px */
    aspect-ratio: 16 / 9; 
    
}

iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    outline: black solid 5px;
    border-radius: 5px;
}

iframe:hover {
    outline-color: #ff8906;
}

.disclaimer {
    color: #a7a9be;
    width: 60%;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    text-align: center;
}
.on_air {
    color: #ff8906;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;    
    font-size: 24px;
    padding-top: 10px;
}

.on_air::before {
    content: "● ";
    color: #ff0000;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 50%, 100% {
        opacity: 1;
    }
    25%, 75% {
        opacity: 0;
    }
}
a{
    color: #ff8906;
    text-decoration: none;
    font-weight: bold;
}


@media (max-width: 768px) {
    .title {
        text-align: center;
    }
    #player-container {
        width: 100%;          
    }

    .disclaimer {
        width: 100%;
    }

}