:root{
    --bg-colour: #3e8ea7;
}

body{
    margin: 0px;
    font-family: sans-serif;
}

a{
    text-decoration: none;
    font-size: 20px;
}

/* Classes */

.nb{
    width: auto;
    height: 75px;
    background-color: var(--bg-colour);
    display: flex;
    align-items: center;
}



/* IDs */

#link{
    padding: 15px;
    color: white;
}

#left{
    display: flex;
    justify-content: left;
    width: 25%;  
}
#middle{
    display: flex;
    flex: 1;  
    justify-content: center;
}
#right{
    display: flex;
    justify-content: right;
    width: 28%; 
}