.header {
    display: flex;
    margin: auto auto;
    margin-top: 30px;
    margin-bottom: -30px;
    width: 100%;
    max-width: 25vw;
}

.hugebox {
    display: grid;
    margin: 50px auto;
    width: fit-content;
    max-width: 65vw;
    border: 2px solid;
    border-color: royalblue;
    border-radius: 8px;
    background-image: url(https://bettysgraphics.neocities.org/images/backgrounds/pattern%20112.jpg);
    padding: 2%;
    grid-template-columns: 1fr minmax(0, 4fr);
    grid-gap: 2%;
    
}

nav, main {
    color: antiquewhite;
    font-family: Arial, Helvetica, sans-serif;
}

nav {
    grid-column: 1 / 2;
    border-right: 4px solid;
    border-color: royalblue;
}

a:link, a:visited {
    color:antiquewhite;
}

main {
    grid-column: 2 / 3;
    width: 100%;
    
}

h1 {
    font-size: 2.4em;
    margin-top: 0.2em;
    -webkit-text-stroke: 0.1rem black;
}

h2 {
    font-size: 2em;
    margin-top: 0.2em;
    -webkit-text-stroke: 0.05rem black;
}

p.descricao {
    font-size: 1em;
    text-align: center;
}

.littlebox {
    display: grid;
    border: 5px soli;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1vw;
    max-width: fit-content;
    padding: 0 1vw;

}

.poster {
    width: 100%;
    margin: vw;
    
}

@media (max-width: 1000px) {
    .hugebox {
        max-width: 80vw;
    }
}