/* FONTS */

    @font-face {
        font-family: 'm5x7';
        src: url('../media/fonts/Enhance.ttf');
    }

/*  HIDE SCROLLBAR*/

    * {
        -ms-overflow-style: none; /* IE and Edge */
        scrollbar-width: none; /* Firefox */
    }

    *::-webkit-scrollbar {
        display: none;  /* Chrome, Safari and Opera */
    }

/* BODY */
        
    * {
        box-sizing: border-box;
    }

    body {
        padding: 0;
        margin: 0;

        background-image: url('../media/art/wallpaper/16x9_v2.png');
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-size: cover;
        background-position: top;

    }

/* BASE STRUCTURE */

    .box {
        width: 100%;
        padding: 16px;

        background: #608043;
        border: 4px outset #7EA35A;

        box-sizing: border-box;
    } 

    .button {
        display: flex;
        align-items: center;
        justify-content: center;

        width: 100%;
        padding: 6px;

        cursor: pointer;
        text-decoration: none;

        background: #F39C11;
        border: 4px outset #fbc66a;
        box-shadow: 6px 6px 8px rgba(12, 0, 0, 0.125);

        color: ghostwhite;
        font-size: 48px;
        text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.250);
    }

    .button:hover {
        text-shadow: -2px -2px 2px rgba(0, 0, 0, 0.250);
        border: 4px inset #fbc66a;
        text-decoration: none;

    }
		
    img {
        max-width: 100%;
    }

    .border {
	    border: 6px ridge #7EA35A;
    }


/* TEXT */

    body {
        font-family: 'm5x7';
        color: ghostwhite;
        letter-spacing: 0.3px;
    }

    small, h1, h2, h3, h4, h5, h6 {
        font-weight: normal;
        margin: 0rem;
        line-height: 100%;
    }

    p {
        font-size: 1.8rem;
        margin: 0em 0em 0.5em 0em;
        line-height: 100%;
    }

    small {
        font-size: 1.25rem;
    }

    h1 {
        margin: 0em 0em 0.1em;
        font-size: 5.4rem;
    }

    h2 {
        font-size: 4.8rem;
    }

    h3 {
        font-size: 3rem;
    }

    h4 {
        font-size: 3.2rem;
    }

    h5 {
        font-size: 2.2rem;
    }

    h6 {
        font-size: 1.6rem;
    }

    li, dd {
        font-size: 1.6rem;
    }

    dt, figcaption {
        font-size: 1.8rem;
    }

    a, a:link, a:visited, a:active {
        color: ghostwhite;
        text-decoration: none;
    }

    a:hover {
        text-decoration: none;
    }

/* LISTS */

    ul, dl {
        list-style-type: '> ';
        margin: 0;
    }

    .list-horizontal {
        list-style: none;
    }

    .list-horizontal li, .list-horizontal dd {
        display: inline;
    }

    .list-horizontal li:before, .list-horizontal dd:before {
        content: '';
    }

    .fig-list{
        padding: 0;
        margin: 0;
    }

    .figcaption-list {
        padding: 0;
        margin: 0;
    }

/* ANIMATIONS */

    .floaty {
        -webkit-animation: mover 5s -1s infinite alternate;
        animation: mover 5s -1s infinite alternate;
        animation-timing-function: ease-in-out;
        
        -webkit-filter: drop-shadow(2px 5px 2px #00000057);
        filter: drop-shadow(2px 5px 2px #00000057);
    }

    @-webkit-keyframes mover {
        0% { transform: translateY(-30px); }
        100% { transform: translateY(-10px); }
    }

    @keyframes mover {
        0% { transform: translateY(-30px); }
        100% { transform: translateY(-10px); }
    }

@media screen and (max-width: 800px) {
    

    .main {
        height: auto;
        width: 100%;
        padding: 0;

    }

    .side {
        flex-direction: row;
        height: auto;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .wrapper {
        flex-direction: column;
        width: 100%;
        padding: 0;
        margin: 0;
    }

}