*{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    box-sizing: border-box;
    color: black;
    word-break: normal;
    padding: 0;
    margin:0;
    position: relative;
}

/* MAIN TAGS */
body{
    background-color: white;
    overflow-y: scroll;
}
ul{
    padding-left:25px;
}
p{
    padding: 5px 10px;
}
a{
    color: black;
}
a:hover{
    color: rgba(0,0,0,0.8);
}

/* HEADER STUFF */
header{
    background-color: white;
    border-bottom: rgba(0,0,0,0.3) solid 3px;
    height:100px;
    position: relative;
    z-index: 999;
}
#header_container{
    height:100%;
    background-color: rgba(0,0,0,0.1);
}
header a{
    padding: 10px 20px;
    text-decoration: none;
}
h1{
    padding-top:10px;
    text-align: center;
}
h2{
    margin-bottom: 10px;
}
nav{
    text-align:center;
    width:100%;
    position: absolute;
    bottom:0;
    padding:10px 0;
}

/* CONTENT STUFF*/
#main_container{
    width:80%;
    min-height: calc(100vh - 190px);
    display: flex;
    align-items:flex-start;
    align-content:flex-start;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 5px;
}
.container{
    background-color: rgba(0,0,0,0.1);
    width:100%;
    padding: 20px;
    display: inline-block;
    margin: 5px;
}
.container_25{
    width:calc(25% - 10px);
    margin:5px;
}
.container_33{
    width:calc(33% - 10px);
    margin:5px;
}
.container_50{
    width:calc(50% - 10px);
    margin:5px;
}
.container_66{
    width:calc(66% - 10px);
    margin:5px;
}
.container_75{
    width:calc(75% - 10px);
    margin:5px;
}
#jschecker{
    display:none;
}
#jschecker:checked + div{
    display:none;
}
#jschecker + div{
    cursor: pointer;
    display: block;
    padding: 30px 20%;
    background-color: lightgray;
    text-align: center;
    width: 100%;
    position: fixed;
    bottom: 0;
}
label[for="jschecker"] span{
    background-color: rgba(0,0,0,0.1);
    margin-top:10px;
    padding: 10px 20px;
    display: inline-block;
}

/* FOOTER STUFF */
footer{
    background-color: rgba(0,0,0,0.1);
    width: 100%;
    height: 90px;
    padding: 20px;
    display: flex;
    align-items: center;
    align-content: space-between;
}
footer img{
    max-height: 44px;
    margin: 0 3px;
}
#footer-left{
    width:40%;
    text-align: left;
}
#footer-center{
    width:30%;
    text-align: center;
}
#footer-right{
    width:30%;
    text-align: right;
}
.text_right{
    text-align: right;
}


.mob_inline,.mob_inlineblock,.mob_block{
    display:none;
}

/* DESKTOP ONLY */
@media only screen and (min-width:900px){
    nav a:hover {
        color: white;
    }
}

/* TABLET */
@media only screen and (max-width:900px){
    .no_tab{
        display: none;
    }
    #main_container{
        width:100%;
    }
    header a{
        padding: 10px;
        text-decoration: none;
    }
    #jschecker + div{
        padding: 15px;
    }
}

/* MOBILE */
@media only screen and (max-width:545px){
    .no_mob{
        display: none;
    }
    .mob_inline{
        display: inline;
    }
    .mob_center{
        text-align: center;
    }

    header{
        height:85px;
        position: sticky;
        top:0;
    }
    header a{
        width: 44px;
        height:44px;
        display:inline-block;
        font-size:1.3em;
    }
    nav{
        padding: 0;
    }
    h1{
        font-size:1.2em;
    }
    #main_container{
        min-height: calc(100vh - 271px);
        display: block;
        padding: 5px;
    }
    .container{
        width:calc(100% - 10px);
    }
    .container_50, .container_33, .container_66{
        width:calc(100% - 10px);
    }
    footer{
        height: auto;
        display: block;
        position: static;
    }
    #footer-left, #footer-center, #footer-right{
        width:100%;
        text-align: center;
        padding: 10px 0;
    }
}