body{
    font-family: sans-serif;
    margin: 0;
}
a{
    text-decoration: none;
    color: white;
}
header{
    min-height: 70px;
    display: flex;
    background-color: #14161a;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}
.logo{
    display: flex;
    align-items: center;
}
.logo img{
    height: 100px;
    margin-right: 10px;
}
nav a{
    font-weight: 600px
    padding-right 11px;
}
nav a:hover{
    color: yellow;
}

@media (max-width: 680px){
    header{
        flex-direction: column;
        }
        nav{
            padding: 10px 0px;
        }
}