html {
    scroll-behavior: auto;
}

body {
    margin: 0;
    font-size: 28px;
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(90deg, black 0%, orange 25%, darkred 50%, orange 75%, black 100%);
}

.header {
    background-color: midnightblue;
    padding: 30px;
    text-align: center;

}



.shopButton {
    display: block;
    padding: 15px 25px;
    font-size: 24px;
    cursor: pointer;
    text-align: center;
    text-decoration: underline;
    outline: none;
    color: white;
    border: none;
    border-radius: 15px;
    box-shadow: 0 9px #999;
    position: absolute;
    top: 15%;
    left: 20%;
    background: linear-gradient(to top, #333 50%, orange 50%);
    background-size: 100% 200%;
    background-position: right bottom;
    transition: all .5s ease-out;

}

.shopButton:hover {
    background-position: left top;
    color: black;
}

.shopButton:active {
    background-color: orange;
    color: black;
    box-shadow: 0 5px #666;
    transform: translateY(4px);
}

.logo {
    width: 200px;
    height: 200px;
    z-index: 1;
}

.banner {
    top: 0;
    left: 0;
    z-index: 2;
}

/* ------ Nav ------ */

#topNav {
    overflow: auto;
    background: #333;
    width: 100%;
    display: block;
    list-style-type: none;
    text-align: center;
}

#topNav a {
    float: none;
    display: inline-block;
    color: #f2f2f2;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    width: 22%;
    background: linear-gradient(to top, #333 50%, orange 50%);
    background-size: 100% 200%;
    background-position: right bottom;
    transition: all .5s ease-out;
}

#topNav a:hover {
    background-position: left top;
    color: black;
}

#topNav a.active {
    background-color: orange;
    color: black;
}


/* ------------------------ */


#scrollNav {
    overflow: auto;
    width: 100%;
    position: fixed;
    top: 0;
    display: none;
    background-color: #333;
}

#scrollNav-left a {
    float: left;
    display: inline-block;
    font-size: 17px;
    padding: 14px 16px;
    color: #f2f2f2;
    text-align: center;
    text-decoration: none;
    width: 12%;
    background: linear-gradient(to top, #333 50%, orange 50%);
    background-size: 100% 200%;
    background-position: right bottom;
    transition: all .5s ease-out;
}

#scrollNav a:hover {
    background-position: left top;
    color: black;
}

#scrollNav a.active {
    background-color: orange;
    color: black;
}

#scrollNav-right a {
    float: right;
    display: inline-block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    width: 12%;
    background: linear-gradient(to top, #333 50%, orange 50%);
    background-size: 100% 200%;
    background-position: right bottom;
    transition: all .5s ease-out;

}


#scrollNav-center {
    float: none;
    text-align: center;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    width: 11.399%;
    padding: 14px 16px;
}

#scrollNav-center a {
    color: #f2f2f2;
    background-color: transparent;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

#scrollNav-center a:hover {
    background-color: transparent;
}

.scrollLogo {
    width: 100px;
    height: 102px;
}

.scrollLogo:hover {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}


/* --------------------------- */


.content {
    padding: 16px;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
}

.sticky + .content {
    padding-top: 60px;
}
