﻿#nav {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    background-color: white;
    padding: 10px;
}

nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #777;
    text-decoration: none;
    background-color: white;
    width: 75px;
    height: 35px;
    margin-left: 15px;
}

    nav a:hover {
        background-color: #ddd;
        color: #777;
        text-decoration: none;
    }
