/*Specific color to the nev menu section*/
nav > ul > li:nth-child(4) > a {
    color: rgb(133, 227, 246);
}

/*Headline styles*/
h1 {
    margin: 30px;
    background-color: rgb(100, 100, 100);
    border-radius: 20px;
}

h3 {
    padding-bottom: 0;
    margin-top: 15px;
}

/*Paragraph styles*/
main p {
    margin: 20px;
}

/******Desktop layout******/
@media screen and (min-width: 600px) {
    article {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas: 
                "head head"
                "process structure"
                "process hierarchy"
                "process sustainability";
        grid-gap: 2rem;
    }

    article > * {
        max-width: 70ch;
    }

    h1 {
        grid-area: head;
        width: 50%;
        margin: 30px auto;
    }

    article > section:first-of-type {
        grid-area: process;
    }

    article > section:nth-child(3) {
        grid-area: structure;
    }

    article > section:nth-child(4) {
        grid-area: hierarchy;
    }

    article > section:last-of-type {
        grid-area: sustainability;
    }
}