body {
    font-family: Dialog, sans-serif;
    background: #404e63;
    color: #31b8d6;
}
nav{
    display: flex;
    width: 100%;
    height: 50px;
    background: #31b8d6;
    align-items: center;
    text-transform: uppercase;
}
ul{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap:10px;
}
li{
    list-style: none;
}
li a{
    color: #000000;
    font-size: 16px;
    text-decoration: none;
}
input{
    height: 15px;
    border-radius: 10px;
    color: #000000;
    outline: none;
    padding: 5px;
}
 button{
    height: 30px;
    border-radius: 10px;
    background: #31b8d6;
    color: #fafafa;
    outline: none;
} button:hover{
       background: #3390a5;
}
 a.active{
    color: #fafafa;
}
 p.version{
     color: black;
     padding: 20px;
     margin-left: auto;
 }