@import url("normalize.css");

/*
@import url('https://fonts.googleapis.com/css?family=Alegreya+Sans:100|Lato:100&display=swap');
@import url('https://fonts.googleapis.com/css?family=Literata&display=swap');
*/

@font-face{
	font-family: 'Exo';
	src: url('Exo-Regular.ttf');
}
@font-face{
        font-family: 'Literata';
        src: url('Literata-Regular.ttf');
}

h1,
h2,
h3,
h4,
h5,
h6{
    font-family: "Lato", sans-serif;
    font-weight: bolder;
}

*{
    font-family: "Literata", sans-serif;
}

a{
    text-decoration: none;
    color: orange;
}
a:hover{
    color: green;
}

hr{
    background: none;
    border: 1px solid darkgrey;
}

#header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70pt;
    border-bottom: 2px solid lightgrey;
    background: white;
    z-index: 999;
    display: flex;
    padding-left: 35pt;
    padding-top: 5pt;
    padding-bottom: 5pt;
    padding-right: 35pt;
    align-items: center;
    justify-content: start;
}
#header img{
    margin-right: 4pt;
    border-radius: 50%;
    height: 70%;

}
#header #menu{
    display: none;
}
#mobilemenu{
    position: fixed;
    right: 0;
    padding-right: 10pt;
    top: 0;
    padding-top: 20pt;
    font-size: 40pt;
    z-index: 999;
    width: initial;
    cursor: pointer;
}
#mobilemenu.open{
    background: rgba(0,0,0,0.8); 
    height: 100%; 
    width: 80%;
    transition: background 0.5s;
}
#mobilemenu.open ul{
    width: 100%;
    right: 0;
    list-style: none;
}
.close{
    position: absolute;
    display:block;
    right: 10pt;
    color: orange;
    top: 25pt;
    font-size: 35pt;
}
#mobilemenu.open ul li{
    font-size: 20pt;
    padding-top: 10pt;
    padding-bottom: 10pt;
}

#content{
    margin-top: 100pt !important;
    width: 90%;
    margin: 0 auto;
    padding-bottom: 100pt;
}

.backarrow{
    font-size: 20pt;
    padding-right: 5pt;
    margin-top: -2pt;
}

.imagetable{
    border-collapse: collapse;
    margin-bottom: 100pt;
}
.imagetable tr{
    border-bottom: 3pt solid #ea7208;
    border-collapse: collapse;
}

.imgscroller img{
    width: 100%;
}

.dropped_title{
    margin-bottom: 0px;
    margin-top: 20pt;
}

td, tr { display: block; }

/* Hide table headers (but not display: none;, for accessibility) */

thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
}

tr + tr { margin-top: 1.5em; }

td {
    /* make like a "row" */
    border: none;
    position: relative;
    text-align: left;
    border-bottom: 25px solid transparent;
}

td:before {
    content: attr(data-label);
    display: inline-block;
    line-height: 1.5;
    width: 100%;
    white-space: nowrap;
}
