*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

main{
    width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: auto auto auto auto;
}

main#portada{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-image: url("FONDO-ALL.png");
    background-size: cover;
    background-position: center;
    text-align: center;
}

#portada header{
    background-color: inherit;
}

header{
    background-color: whitesmoke;
    grid-column: 1/3;
    grid-row: 1/2;
}

nav{
    background-color: lightgray;
    grid-column: 1/3;
    grid-row: 2/3;
    display: flex;
    justify-content: space-around;
}

aside{
    background-color: whitesmoke;
    grid-column: 1/2;
    grid-row: 3/4;
}

article{
    background-color: whitesmoke;
    grid-column: 2/3;
    grid-row: 3/4;
}

footer{
    background-color: lightgray;
    grid-column: 1/3;
    grid-row: 4/5;
}

    h4{
        font-family: fantasy;
        font-size: 100px;
    }
    h3{
        font-family: fantasy;
        font-size: 50px;
    }
    h2{
        font-size: 20px;
        font-family: monospace;
    }