*{
    border: 0;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Barlow', sans-serif;
}

header{
    width: 70vw;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: white;
    margin: 20px auto;
    border-radius: 4px;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.75);
}

#logo{
    width: 30%;
    margin: 0 20px;
}

nav{
    flex-grow: 1;
}

ul{
    display: flex;
    justify-content: space-around;
    list-style: none;
}

li{
    font-size: 18px;
    padding: 10px 10px;
}

a{
    text-decoration: none;
    color: black;
}


.triple{
    display: none;
}

@media screen and (max-width: 700px) {

    header{
        justify-content: center;
    }

    .triple{
        display: block;
}
    nav{
        display: none;
    }
    #logo{
        margin: 0;
    }

}