@import url(../fonts/fonts.css);
*{
    margin: 0;
    padding: 0;
    text-decoration: none;
}

/* Navigation Bar */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    text-align: center;
    font-family: montesserat;
}
#menu,
#menuBtn {
    float: left;
    color: #fff;
    font-size: 2.5em;
    line-height: 100px;
    margin: 0 30px;
    z-index: 2;
    text-shadow: #fff;
}
#menu {
    display: none;
}
.logo {
    font-size: 2.5em;
    font-weight: bold;
    line-height: 100px;
    color: aliceblue;
}
nav ul {
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    height: 100vh;
    position: absolute;
    top: 100px;
    left: -100%;
    text-align: center;
    transition: 0.5s ease;
    list-style: none;
    padding-top: 30px;
}
nav ul li {
    display: block;
}
nav ul li a {
    font-size: 1.7em;
    line-height: 100px;
    text-transform: uppercase;
    text-decoration: none;
    color: #b5babd;
    transition: 0.5s ease;
}
nav ul li a:hover,
.active {
    color: #fff;
}
#menu:checked ~ ul{
    left: 0;
}
#menu:checked ~ nav{
    background: rgba(0, 0, 0, 0.5);
}
