@import url('https://fonts.googleapis.com/css2?family=ABeeZee&display=swap');

.topnav {
    float: right;
    background-color: transparent;
    overflow: hidden;
}

#headerLink {
    color: #6495ED;
    text-align: left;
    font-size: 29px;
    margin-top: 0px;
    text-decoration: none;
    font-family: 'ABeeZee';
}
  
.topnav a {
    display: inline-block;
    color: #6495ED;
    text-align: right;
    padding: 2px 20px;
    text-decoration: none;
    font-size: 25px;
}
  
.topnav a:hover {
    text-decoration: underline;
}

.icon {
    display: none;
}

a.icon {
    margin: 13px;
    color: #6495ED;
}

/* Overlay Stuff */

.overlayNav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    background-color: white;
    overflow-x: hidden;
    transition: 0.5s;
}

.overlay-content {
    text-align: center;
    margin-top: 25px;
    position: relative;
    top: 25%;
    width: 100%
}

.overlayNav a {
    padding: 6px;
    font-size: 30px;
    text-decoration: none;
    color: #6495ED;
    transition: 0.4s;
    display: block;
}

.overlayNav a:hover, .overlayNav a:focus {
    text-decoration: underline;
}

.closebtn {
    position: absolute;
    top: 6px;
    right: 26px;
    font-size: 80px;
  }

/* Media Screen */

@media screen and (max-width: 750px) {
    .topnav a {
        display: none;
    }
    a.icon {
        float: right;
        display: block;
    }
  }