body {
    margin:0px;
    font-family: 'Montserrat';
    color:gray;



}

.menu {

    position:absolute;
    top:10px;
    left:30px;
    padding:6px 30px;
    border:2px dotted grey;
    border-radius:50px
}

.bottom {
    position:absolute;
    bottom:24px;
    margin:0px;
    left:50%;
    transform: translateX(-50%);
    font-size: 12px;

    
}


/* unvisited link */
a:link {
  color: grey;
    text-decoration: none;
}

/* visited link */
a:visited {
  color: grey;
        text-decoration: none;

}

/* mouse over link */
a:hover {
  color: deepskyblue;
        text-decoration: none;

}

/* selected link */
a:active {
  color: grey;
        text-decoration: none;

}