.slide-out {

}

.hamburger {
    top: 2px;
    right: 12px;
    position: absolute;
    display: block;
    width: 35px;
    cursor: pointer;
    appearance: none;
    background: none;
    outline: none;
    border: none;
    z-index: 7;
}

.hamburger .bar, .hamburger:after, .hamburger:before {
    content: '';
    border-radius: 5px;
    display: block;
    width: 100%;
    height: 5px;
    background-color: black;
    margin: 6px 0px;
    transition: 0.4s;
}

.hamburger.is-active:before {
    transform: rotate(-45deg) translate(-7.5px, 6px);
    background-color: blue;
}
.hamburger.is-active .bar {
    opacity: 0;
    background-color: blue;
}
.hamburger.is-active:after {
    transform: rotate(45deg) translate(-7.5px, -9px);
    background-color: blue;
}

.mobile-nav {
    position: fixed;
    display: block;
    top: 0;
    left: 100%;
    width: 100%;
    min-height: 100vh;
    z-index: 5;
    background: linear-gradient(to bottom, #9F000F, #FFBF00, #228B22);
    padding-top: 120px;
    transition: 0.4s;
    font-family: sans-serif;
}

.mobile-nav h1 {
    color: #FFF;
    text-align: center;
    padding-bottom: 25px;
}

.mobile-nav.is-active {
    left: 0;
}

.mobile-nav a {
    display: block;
    text-align: center;
    color: #FFF;
    max-width: 350px;
    font-size: 18px;
    margin: 0 auto 16px;
    background-color: #191970;
    padding: 12px 16px;
    text-decoration: none;
}

#social-icons {
    position: relative;
    left: 50%;
    align-items: center;
    display: flex;
    flex-direction: row;
    list-style-type: none;
}

.mobile-nav a:hover {
    background-color: green;
    text-decoration: none;
    font-size: 20px;
    color: #191970;
    font-weight: 600;
}

    /* iPad upright */
@media only screen and (min-width: 810px) {  
    #social-icons {
        margin-left: 51.5%;
    }
    .mobile-nav a {
        max-width: 400px;
        font-size: 22px;
    }    
    .mobile-nav a:hover {
        font-size: 25px; 
    }   
}
    /* iPad sideways */
@media only screen and (min-width: 1179px) {  
    #social-icons {
        margin-left: 56.5%;
    }
}

