nav{
    background: cornflowerblue;
    position: fixed;
    width:98%;
    height:23px;
    top:0;
    padding: 1%;
    color: white;
    text-align: left;
}
*{font-family: 'Montserrat', sans-serif;}
a{
    transition: text-decoration 0.5s, color 0.5s;
    text-decoration: underline transparent;
    color:rgb(0, 144, 192);
}
a:hover{
    text-decoration: underline deepskyblue;
    color: deepskyblue;
}
nav>a{
    float: right;
    color:white;
}
nav>a:hover{
    text-decoration: underline rgb(236, 205, 27);
    color: rgb(236, 205, 27);
}

body{
    padding-top: 100px;
    margin: 0;
    text-align: center;
}