nav{
    text-align: center;
    color: white;
    border-bottom: 1px solid darkgray;
    padding-bottom: 25px;
}

nav .logo{
    font-weight: bold;
    padding-bottom: 25px;
    font-size: 20px;
}

nav .logo a{
    color: white;
    text-decoration: none;
}

nav .items a{
    color: lightgray;
    padding: 14px 16px;
    border: 2px solid #2a2a2a;
    text-decoration: none;
    transition: all 0.2s;
    border-radius: 12px;
}
nav .items a:hover{
    border: 2px solid #868686;
}

nav .items a.active{
    color: black;
    background: white;
    padding: 14px 16px;
    border: 2px solid white;
    text-decoration: none;
    transition: all 0.2s;
    border-radius: 12px;
}