.myNavbar{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Montserrat;
    z-index: 20;
    position: absolute;
    top: -10px;
    right: 0;

}

.myNav {
    z-index: 100;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;

}

.hamburgerMenu {
    height: 35px;
    width: 35px;
    background-color: transparent;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    padding: 1rem;
    transition: 0.4s;
}

.bar {
    width: 60%;
    height: 4px;
    background-color: white;
    border-radius: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.6s, opacity 0.2s, top .3s ease;
}

.bar1{
    top: 30%;
}
.hamburgerMenu:hover .bar1 {
    top: 25%;
}
.bar3{
    top: 70%;
}
.hamburgerMenu:hover .bar3 {
    top: 75%;
}


.hamburgerMenu.active .bar1 {
    transform: translate(-50%, -50%) rotate(-315deg);
    top: 50%;
    width: 70%;
}
.hamburgerMenu.active .bar2 {
    opacity: 0;
}
.hamburgerMenu.active .bar3 {
    transform: translate(-50%, -50%) rotate(-225deg);
    top: 50%;
    width: 70%;
}

.offScreenMenu {
    position: fixed;
    top: 50;
    right: -75%;
    background-image: linear-gradient(315deg, #000000 20%, #130F40 84%);
    height: 100vh;
    width: 75%;
    transition: .5s;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.offScreenMenu.active {
    right: 0;
}

@media (max-width: 500px) {
    .offScreenMenu {
      right: -100%;
      width: 100%;
    }
    .offScreenMenu.active {
      right: 0;
    }
  }

  @media (min-width: 501px) and (max-width:750px){
    .offScreenMenu {
        right: -50%;
        width: 50%;
      }
      .offScreenMenu.active {
        right: 0;
      }
  }

  @media (min-width: 751px) {
    .offScreenMenu {
        right: -30%;
        width: 30%;
      }
      .offScreenMenu.active {
        right: 0;
      }
  }

  .options, li, a {

    color:white;
    text-decoration: none;
    border: none;
    padding: 10px 20px;
    list-style: none;
    transition: 0.3s;
}

li:hover {
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.849);
}

.topbar{
    position: absolute;
    background: black;
    top: 0;
    width: 100%;
    height: 75px;
    color: white;
    z-index:10;
    font-family: Montserrat;
}

.logo{
    position: absolute;
    z-index: 20;
    top: 4px;
    height: 70px;
    width: auto;
    left: 6vw;
}

.docs{
    font-size: 20px;
    margin-right: 25px;
}
.some{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-top: 5px;
}
.info{
    font-family: Courier New;
    font-size: 20px;
    background: white;
    color: black;
    height: 30px;
    width: 30px;
    border-radius: 50%;
}

.offscreenInfo{
    position: fixed;
    z-index: 5;
    background: black;
    color: white;
    font-family: Montserrat;
    height: 100vh;
    top: -100vh;
    transition: .5s;
}
.offscreenInfo.active{
    top: 70px;
    padding: 20px;
}