@font-face {
    font-family: "Impact";
    src: url("fonts/impact.ttf");
}

body{
    font-family: "sens-serif";
    margin: 0;
    background-color: aqua;
    font-weight: 100;
}

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
    background-color: aliceblue;
    padding: 5px;
    font-family: "Impact";
    letter-spacing: 4px;
    font-weight: 100;
}

.logo{
    display: flex;
    align-items: center;
}

.logo img{
    height: 70px;
    margin-right: 10px;
    margin-left: 20px;
}

nav a{
    text-decoration: none;
    color: blue;
    padding-right: 20px;
    font-weight: 100;
}

nav a:hover{
    text-align: underline;
    color: red;
    font-weight: 100;
}

a{
    text-decoration: none;
    color: gray;
}

h1{
    text-align: center;
    font-family: "Impact";
    letter-spacing: 5px;
    text-transform: uppercase;
    color: white;
    font-size: 1.5em;
    padding-top: 1%;
    font-weight: 100;

}

section{
    display: flex;
}

article{
    padding: 1;
    background-color: aliceblue;
    margin: 1%;
    display: flex;
    flex-direction: column;
    line-height: 1,5em;
    border-radius: 15px;
}

article img{
    width: 100%;
    border-radius: 5px;

}

article p{
    line-height: 1.5em;
}

footer{
    display: flex;
    justify-content: center;
    background-color: aliceblue;
    height: auto;
    padding: 5% 2%;
    margin-top: 5%;
    margin-bottom: 0;
}

footer p{
    text-align: center;
}

@media (max-width: 600px){
    header{
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }
     nav{
        padding: 10px 0;

    }

    nav a:last-child{
        padding-right: 0;
       
    }

    .logo img{
        height: 50px;
        margin-right: 10px;
        margin-left: 20px;
}

    section{
        display:flex;
        flex-direction: column;
    }

    article{
        width: 33,33%;
        width: 2% 5%;
        background-color: aliceblue;
        margin:1% 2%
    }
}

    