@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin&display=swap');

*{
    font-family: 'Libre Franklin', sans-serif;
color: #67AFDA;
    text-decoration: none;
}

nav{
    display: flex;
    flex-direction: row;
    justify-content: center;
}

nav a{
    margin: 10px;
    padding: 10px;
    color: whitesmoke;
    transition: 0.2s;
}
nav a:hover{
    color: #67AFDA;
transition: 0.2s;
}

body{
    margin: 0;
    background-color: black;
    margin: 5%;
}

header h1{
    color: whitesmoke;
    text-align: center;
}

header h1 strong{
    color: #67AFDA;
    font-size: 1.2em;
}

header h2{
    text-align: center;
    font-size: 1em;
}

header{
    display: flex;
    flex-direction: column;
}

img{
    width: 100%;
    max-height: max-content;
    display: block;
}


section{
    display: flex;
    margin: 1%;
}

article{
    margin: 20px;
}

article h1{
    text-align: center;
}

article p{
    text-align: justify;
}

@media(max-width: 1280px){
    body{
        margin: 0;
    }
}

@media(max-width: 800px){
    header nav{
        flex-direction: column;
    }
    header h2{
        display: none;
    }

    header a{
        text-align: center;
    }
    body{
        margin: 0;
    }
    section{
        flex-direction: column;
        margin: 0;
        padding: 10px;
    }
    article h1{
        text-align: left;
    }
}