*{
    margin: 0;
    padding: 0;
}
body{
    background-color: #01050C;
    font: normal 300 18px Lato, sans-serif;
    color: white;
}
header{
    grid-area: header;
    background-color: #251F4B;
    min-height: 15vh;
}
article{
    grid-area: article;
    background-color: #01050C;
    min-height: 85vh;
    padding: 0 5vw 0 5vw;
}
nav{
    grid-area: nav;
    min-height: 85vh;
    padding: 1vh 1vw 1vh 1vw;

    border-left: 0.2px solid rgba(180, 179, 180, 0.452);
}
footer, footer p a{
    grid-area: footer;
    background-color: rgb(1, 3, 7);
    color: rgba(67, 156, 153, 0.815);
    font-size: small;
    min-height: 10vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
footer p{
    margin: 0 1vw 0 1vw;
}

.main{
    display: grid;
    grid-template-areas: 
    "header header header header"
    "article article article nav"
    "footer footer footer footer";
}

h1{
    color: #ffffff;
    font: normal 300 18px Lato, sans-serif;
}
h3{
    color: #ffffff;
    font: normal 400 20px Lato, sans-serif;
    text-transform: uppercase;
}
time{
    color: rgba(255, 255, 255, 0.54);
    font: normal 700 12px Lato, sans-serif;
}

a{
    color: #ffffff;
    text-decoration: underline;
}
a:hover{
    color: #ffffff;
    text-decoration: none;
}