body {
    background-color: #373535;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: #fff;
    background-image: url(/BG4.png);
    background-size: 200px;
}

/* FONTS */
  

/* SCROLLBAR */
/* Firefox */
* {
    scrollbar-width: auto;
    scrollbar-color: #ffffff rgba(0, 0, 0, 0);
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 10px;
}

*::-webkit-scrollbar-track {
    background: #000000;
}

*::-webkit-scrollbar-thumb {
    background-color: #000000;
}

/* NAVIGATION */
nav {
    font-family: "Lexend Zetta", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    padding: 0 10px;
    top: 0;
    left: 0;
    position: fixed;
    z-index: 100;
    width: 100%;
    height: 100px;
}

nav a {
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 5px 10px;
    border: solid 1px #fff;
    background-color: #373535;
    -moz-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

nav a:hover {
    color: #b55050;
    border: solid 1px #b55050;
    -moz-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

nav ul {
    display: flex;
    list-style: none;
    padding: 0;
}

nav ul li {
    margin: 5px;
}

/* NAV - JS DISABLED */
.nav-nojs a {
    font-family: "Lexend Zetta", sans-serif;
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 5px 10px;
    border: solid 1px #fff;
    -moz-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.nav-nojs a:hover {
    color: #b55050;
    border: solid 1px #b55050;
    -moz-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

/* MOBILE MENU */
label {
    position: fixed;
    top: 10px;
}

.navbutton {
    margin: 10px;
    border: 1px solid #fff;
    width: 30px;
    height: 30px;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 300;
    background-color: #373535;
}

.navicon {
    background-color: #fff;
    display: block;
    position: relative;
    width: 15px;
    height: 2px;
}

.navicon:before {
    top: 5px;
}

.navicon:after {
    bottom: 5px;
}

.navicon:before, .navicon:after {
    background: #fff;
    display: block;
    width: 100%;
    height: 100%;
    content: '';
    position: absolute;
    transition: all .2s ease-out;
  }

@media (min-width: 811px) {
    #menu, .menu-icon {
        display: none;
    }
}

@media (max-width: 810px) {
    #menu {
        display: block;
        position: relative;
        overflow: hidden;
        visibility: hidden;
    }

    nav {
        position: fixed;
        top: 0;
        margin-top: 50px;
        visibility: hidden;
        opacity: 0;
        -moz-transition-duration: 0.2s;
        -o-transition-duration: 0.2s;
        -webkit-transition-duration: 0.2s;
        transition-duration: 0.2s;
    }

    #menu:checked ~ nav {
        visibility: visible;
        opacity: 1;
        z-index: 100;
    }

    #menu:checked ~ .menu-icon .navicon {
        background: transparent;
    }

    #menu:checked ~ .menu-icon .navicon:before {
        transform: rotate(-45deg);
    }

    #menu:checked ~ .menu-icon .navicon:after {
        transform: rotate(45deg);
    }

    #menu:checked ~ .menu-icon .navicon:before,
    #menu:checked ~ .menu-icon .navicon:after {
        top: 0;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 10px;
    }

    nav a {
        background-color: #373535;
    }
}

/* CONTAINERS */
.bounding {
    margin: 60px 25px;
}

.content-nobox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 10px 50px;
    padding: 30px 50px;
}

.content-box {
    margin: 10px 50px;
    padding: 30px 50px;
    border: 1px solid #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #373535;
}

.content-box-row {
    margin: 10px 50px;
    padding: 30px 50px;
    color: #fff;
    border: 1px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #373535;
}

.inner-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.side-img {
    height: auto; 
    width: 300px;
    padding: 20px;
    border-radius: 50px;
    object-fit: cover;
}

.side-gif {
    height: auto; 
    width: 700px; 
    margin: 50px;
}

.side-gif img {
    border: 1px solid #fff;
    padding: 5px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 810px) {
    .bounding {
        margin: 20px;
    }
    
    .content-nobox {
        margin: 10px;
        padding: 30px;
    }
    
    .content-box {
        margin: 10px;
        padding: 30px;
    }
    
    .content-box-row {
        flex-direction: column;
        margin: 10px;
        padding: 30px;
    }

    .inner-box {
        flex-direction: column;
    }

    .side-gif {
        width: 250px;
        height: 300px;
    }

    .side-gif img {
        object-position: -50px 0;
    }

    .side-img {
        width: 100%;
        height: 300px;
        object-position: 0 0;
    }
}

/* ABOUT */
.about {
    width: 400px; 
    text-align: center;
}

.about-img {
    width: 400px;
    filter: drop-shadow(5px 5px 10px rgb(48, 46, 46));
    -webkit-animation:twitch1 2s infinite linear;
    animation: twitch1 2s infinite linear;
}

@-webkit-keyframes twitch1{
    0%{
        -webkit-transform:rotate(0deg);transform:rotate(0deg)
    }
    24%{
        -webkit-transform:rotate(0deg);transform:rotate(0deg)
    }
    25%{
        -webkit-transform:rotate(5deg);transform:rotate(5deg)
    }
    49%{
        -webkit-transform:rotate(5deg);transform:rotate(5deg)
    }
    50%{
        -webkit-transform:rotate(0deg);transform:rotate(0deg)
    }
    74%{
        -webkit-transform:rotate(0deg);transform:rotate(0deg)
    }
    75%{
        -webkit-transform:rotate(-5deg);transform:rotate(-5deg)
    }
    99%{
        -webkit-transform:rotate(-5deg);transform:rotate(-5deg)
    }
    100%{
        -webkit-transform:rotate(0deg);transform:rotate(0deg)
    }
}

@keyframes twitch1{
    0%{
        -webkit-transform:rotate(0deg);transform:rotate(0deg)
    }
    24%{
        -webkit-transform:rotate(0deg);transform:rotate(0deg)
    }
    25%{
        -webkit-transform:rotate(5deg);transform:rotate(5deg)
    }
    49%{
        -webkit-transform:rotate(5deg);transform:rotate(5deg)
    }
    50%{
        -webkit-transform:rotate(0deg);transform:rotate(0deg)
    }
    74%{
        -webkit-transform:rotate(0deg);transform:rotate(0deg)
    }
    75%{
        -webkit-transform:rotate(-5deg);transform:rotate(-5deg)
    }
    99%{
        -webkit-transform:rotate(-5deg);transform:rotate(-5deg)
    }
    100%{
        -webkit-transform:rotate(0deg);transform:rotate(0deg)
    }
}

@media (max-width: 810px) {
    .about-img {
        width: 300px;
    }

    .about {
        width: 100%;
    }
}

/* TEXT */
h1, h2, h3, h4 {
    font-family: "Lexend Zetta", sans-serif;
    text-align: center;
}

p i {
    color: #d68484;
}

a {
    color: #d68484;
    text-decoration: none;
    -moz-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

a:hover {
    color: #fff;
    -moz-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

#credits {
    display: flex;
    justify-content: center;
    font-size: 12px;
    letter-spacing: 5px;
    color: #fff;
}

ul, ol {
    padding: 0 0 0 20px;
}

.content-box li:not(:last-child), .content-box-row li:not(:last-child), .content-nobox li:not(:last-child) {
    margin-bottom: 10px;
}

.socmed {
    list-style: none;
}

.socmed li {
    float: right;
    padding: 10px;
    font-size: 25px;
}

figcaption {
    text-align: center;
}

@media (max-width: 810px) {
    h1 {
        font-size: 20px;
    }

    h2 {
        font-size: 17px;
    }
}

/* PARALLAX */
#parallax {
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: #373535;
    background-image: 
        url(/BG3.png), 
        url(/BG2.png), 
        url(/BG1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-position: 50% 50%;
    top: 0;
    left: 0;
  }

.index-title {
    position: absolute;
    top: 47%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-transform: uppercase;
    opacity: .5;
    font-size: 70px;
    z-index: 100;
}

@media (max-width: 810px) {
    #parallax {
        display: none;
    }

    .index-title {
        font-size: 40px;
    }
}

/* MOBILE INDEX */
#mobile-index {
    position: fixed;
    background-image: 
        url(/BG3.png),
        url(/BG2.png),
        url(/BG1.png);
    background-repeat: no-repeat;
    background-color: #373535;
    background-position: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

@media (min-width: 811px) {
    #mobile-index {
        visibility: hidden;
    }
}

/* GALLERY */
.gallery {
    display: flex;
    flex-wrap: wrap;
}

.gallery a {
    height: 40vh;
    flex-grow: 1;
    padding: 5px;
}

.gallery img {
    max-height: 100%;
    min-width: 100%;
    object-fit: cover;
    vertical-align: bottom;
}

.youtube {
    padding: 50px;
    width: 560px;
    height: 315px;
}

.youtube iframe {
    width: 100%;
    height: 100%;
}

@media (max-width: 810px) {  
    .gallery a {
        height: 20vh;
    }

    .youtube {
        width: 250px;
        height: 250px;
        padding: 10px;
    }
}

/* COMMISSIONS */
.comm-select {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.comm-button {
    width: 250px;
    height: 400px;
    display: flex;
    margin: 10px;
    justify-content: center;
    align-items: center;
    font-family: "Lexend Zetta", sans-serif;
    text-align: center;
    background-size: cover;
    background-position: right;
    -moz-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.comm-button:hover {
    filter:grayscale();
    -moz-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.comm-button span {
    background-color: #000000;
    padding: 5px;
}

.button {
    font-family: "Lexend Zetta", sans-serif;
    text-align: center;
    background-color: #000000;
    padding: 20px;
    margin: 30px;
    -moz-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.button:hover {
    background-color: #b55050;
    -moz-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.comm-gal {
    display: flex;
    flex-wrap: wrap;
    width: 300px;
    padding: 20px;
    margin: 30px;
}

.comm-gal a {
    width: 90px;
    flex-grow: 1;
    padding: 5px;
}

.comm-gal img {
    min-height: 100%;
    max-width: 100%;
    object-fit: cover;
    vertical-align: bottom;
    margin: 5px;
}

@media (min-width: 811px) {  
    .button {
        display: none;
    }
}

@media (max-width: 810px) {  
    .comm-button {
        width: 200px;
        height: 200px;
    }

    .gform {
        display: none;
    }

    .comm-gal {
        width: 100%;
    }

    .comm-gal a {
        width: 50px;
    }
}

/* TABLES */
table {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    max-width: 400px;
    border: 1px solid #fff;
}

th {
    color:#373535;
    background-color: #fff;
    padding: 5px;
}

td {
    padding: 5px;
}

@media (max-width: 810px) {  
    table {
        width: 100%;
        margin: 5px 0;
    }

    th, td {
        padding: 5px;
        font-size: 12px;
    }
}