#menu{
    position: fixed;
    z-index: 9;
    height: 100vh;
    width: 100%;
}

.nav__link {
    color: white;
    display: block;
    /* text-align: center; */
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 1.25rem;
    text-decoration: none;
    padding: 1rem;
    border-bottom: dashed 1px lightgray;
}
.nav__link:hover, .nav__link:focus {
  outline: 0;
 /* background-color: rgba(0, 0, 0, 0.2);*/
}

