#navToggle {
    height: 30px;
    width: 30px;
    position: absolute;
    top: 30px;
    right: 40px;
    opacity: 0.9;
    transition: .6s;
    transition-timing-function: ease-in-out;
    cursor: pointer;
    z-index: 10002;
}
#navToggle svg {
    fill: #fff;
    transition: .6s;
    transition-timing-function: ease-in-out;
}
#navToggle svg:hover {
    fill: #cfb539;
}
.menuBg {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(207,181,57,1);
    z-index: 10001;
}
.menuLinks {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.menuBg a {
    display: block;
    font-weight: 700;
    font-size: 50px;
    text-align: center;
    line-height: 68px;
    cursor: pointer;
    color: #191607;
    font-family: 'oswald', sans-serif;
    text-decoration: none;
}
.menuBg a:hover {
    color: #fff;
    text-decoration: none;
}
#navLogo {
    pointer-events: auto;
    cursor: pointer;
    background-color: transparent;
}
#navLogo img {
    height: 42px;
    position: absolute;
    left: 40px;
    top: 20px;
    z-index: 10000;
}
#navOpen, #navLogo, #contact, #portfolio, #resume, #about, #dogs, #rankings {
    display: none;
}
.social {
    padding-bottom: 15px;
    margin: 0 auto;
    position: fixed;
    bottom: 5px;
}
.social img {
    display: inline-block;
    padding: 0 3px;
    position: relative;
    bottom: 0;
    height: 25px;
    margin: 0;
}
.social a {
    padding-left: 0;
}


@media all and (max-width: 450px) {
    #navToggle {
        height: 25px;
        width: 25px;
        top: 20px;
        right: 20px;
    }
    .menuBg a {
        font-size: 36px;
    }
}








