@font-face {
    font-family: STHupo;
    src: url('fonts/STHUPO.TTF');
}
::-webkit-scrollbar {
    display: none;
}
body, html {
    margin: 0;
    padding: 0;
    background-color: #224400;
}
header {
    background-color: #446622;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    width: 100vw;
}
nav { 
    margin: 0;
    padding: 0;
    display: flex;
    background-color: #395e17;
    height: 40px;
    width: 100vw;
}
.hdr_h1 {
    font-family: monospace;
    font-size: 40px;
    background-color: none;
    text-shadow: 0 0 5px #fff;
}
nav a {
    display: inline-block;
    color: #fff;
    margin: 0;
    padding: 8px 0;
    font-family: sans-serif;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
    width: calc(33.33333333333% - 2px);
    text-align: center;
} nav a:hover {
    border-bottom: 4px solid #003300;
    background-color: #325410;
    cursor: pointer;
}
.nav_sep {
    background-color: #224400;
    width: 4px;
    height: 100%;
}
h1, p, label, button, input, h1, h2, h3, h4, h5, h6, li, a {
    color: #fff;
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}
a {
    color: #9999ff;
}
.active {
    background-color: #4a6f18;
}
main {
    font-size: 18px;
    background-color: #335511;
    min-height: calc(100vh - 70px - 40px) !important;
    width: 900px;
    margin: 0 auto;
    box-shadow: 2px 15px 20px #112200;
} 
.main_content_p {
    margin: 0 10px;
    text-align:center;
    position: relative;
    font-size: 20px;
    top: 20px;
}
.quotebox {
    display: inline-block;
    border: 2px solid #aaa;
    width: 210px;
    height: 210px;
    padding: 0 10px;
    background-color: #153f1e;
    box-shadow: 5px 5px 15px #003300;
    overflow: hidden;
    border-radius: 5px;
}
.quotebox p {
    font-style: italic;
    font-size: 30px;
}
.quotebox a {
    font-style: italic;
    color: #fff;
    font-family: cursive;
    font-size: 40px;
}
.quote_end {
    position: relative;
    left: 190px;
}
.quotebox p {
    color: #aaa;
    width: 210px;
    height: 116px;
}
.quote_scrollers {
    align-items: center;
    justify-content: space-evenly;
    margin-top: 100px;
    display: flex;
    width: 100%;
    height: fit-content;
    padding: 15px 0;
}
.quote_btn {
    transform: translateY(-10px);
    font-size: 30px;
    padding: 6px 15px;
    border-radius: 100%;
    border: none;
    background-color: rgba(0, 0, 0, 40%);
    color: #bbb;
} .quote_btn:hover {
    cursor: pointer;
    background-color: rgba(0, 0, 0, 50%);
    color: #fff;
} .quote_btn:active {
    background-color: rgba(0, 0, 0, 60%);
    color: #999;
}
#quote_left {
    transform: translateX(60px);
} #quote_left:hover {
    animation: quote_btn_hover_left 500ms linear infinite;
}
#quote_right {
    transform: translateX(-60px);
} #quote_right:hover {
    animation: quote_btn_hover_right 500ms linear infinite;
}
.active_quote {
    display: inline-block;
}
.inactive_quote {
    display: none;
}
.quote_credits {
    text-align: center;
    position: relative;
    font-weight:bold;
    font-style:italic;
    top: 5px;
    color: #999;
    font-size: 13px;
}
.quote_wrapper {
    box-shadow: none;
    height: 240px;
    width: 234px;
}

.animation_quote_enter{
    animation: quote_enter 250ms ease-in-out;
}

@keyframes quote_enter {
    40% {
        scale: 1.1;
        opacity: 100;
    }
    70% {
        scale: 0.9;
    }
    100% {
        scale: 1;
    }
}
@keyframes quote_btn_hover_right {
    0% {
        position: relative;
        left: 0;
    }
    50% {
        position: relative;
        left: 5px;
    }
    100% {
        position: relative;
        left: 0;
    }
}
@keyframes quote_btn_hover_left {
    0% {
        position: relative;
        left: 0;
    }
    50% {
        position: relative;
        left: -5px;
    }
    100% {
        position: relative;
        left: 0;
    }
}
@media (max-width: 1000px) {
    main {
        width: 680px;
    }
    #quote_left {
        transform: translateX(20px);
    }
    #quote_right {
        transform: translateX(-20px);
    }
}
@media(max-width: 690px) {
    .hdr_h1 {
        font-size: 30px;
    }
    nav a {
        font-size: 16px;
    }
    main {
        width: 470px;
    }
    #quote_left {
        transform: translateX(0);
    }
    #quote_right {
        transform: translateX(0);
    }
}