@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&family=Comfortaa:wght@300..700&family=Host+Grotesk:ital,wght@0,300..800;1,300..800&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Noto+Color+Emoji&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Pacifico&family=Playwrite+GB+S:ital,wght@0,100..400;1,100..400&family=Rethink+Sans:ital,wght@0,400..800;1,400..800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik+Moonrocks&family=Tangerine:wght@400;700&display=swap');

body{
    
    font-family: "Roboto";
    margin: 0px;
}
 header {
    background-color: rgb(27, 101, 240);
    color: white;
    padding: 20px 5%;
}
header h1 {
    text-align: center;
}
header h2 {
    text-align: center;
    color:#1B94E3 ;
    font-size: 1em;
}

img {
    max-width: max-content;
    width: 100%;
}
nav{
    display: flex;
    flex-direction: column;
    align-items: center;
}
nav a {
 text-decoration: none;
 color:  white;
 margin: 20px;
}
main{
    background-color: turquoise;
    padding: 20px 5%;
    color:#1B94E3 ;
}
section {
    display: flex;
    flex-direction: column;
}
 @media(min-width:800px){
    section {
        flex-direction: row;
    }
    article {
        text-align:justify ;
        margin: 25px;
    }
    main {
        background-color: black;
    }
    header {
        background-color: black;
    }
    nav  {
        flex-direction: row;
        justify-content: center;
    }
}
header strong {
color: blue;
font-size: 125%;
}
@media(max-width:800px){
    header h2{
        display: none;
    }
}