p, h1, h2 {
    color: antiquewhite;
    font-family: Arial, Helvetica, sans-serif;
}

.videobox {
    margin: 50px auto;
    max-width: 900px;
    border: 2px solid;
    border-color: royalblue;
    border-radius: 8px;
    background-image: url(https://bettysgraphics.neocities.org/images/backgrounds/pattern%20242.gif);
    padding: 2%;
}

@media (max-width: 1040px) {
    .videobox {
        margin: 50px;
    }
    
}


h1, h2 {
    text-align: center;
}

p {
    font-size: large;
    text-align: justify;
}

.descricao {
    font-size: small;
    text-align: center;
}

.videos {
    display: grid;
    width: 100%;
    grid-template-columns: auto auto;
    gap: 10px;
    

}

iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    
}

@media (max-width: 800px) {
    iframe {
        width: 100%;
        aspect-ratio: 16 / 9;
    }

    .videos {
        grid-template-columns: auto;
    }

}


.footerhref {
    display: flex;
    background-color: royalblue;
    border: solid 2px;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    width: max-content;
    font-size:medium;
    margin: auto auto ;

}