@import url("normalize.css");

/*
@import url('https://fonts.googleapis.com/css?family=Alegreya+Sans:100|Lato:100|Exo:wght@100;200&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: "Exo", sans-serif;
    font-weight: 100;
}

*{
    font-family: "Literata", sans-serif;
}

a{
    text-decoration: none;
    color: orange;
}
a:hover{
    color: green;
}

hr{
    background: none;
    border: 1px solid darkgrey;
}

body{
    position: absolute;
    overflow-x: hidden;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#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{
    border-radius: 50%;
    height: 70%;

}
#header #menu{
    position: relative;
    margin-left: auto;
}
#mobilemenu{
    display: none;
}
#header h1{
    position: relative;
    display: inline;
    margin-left: 20pt;
    font-size: 18pt;
    letter-spacing: 7pt;
}
img{
    position: relative;
}

#content{
    position: absolute;
    top: 80pt;
    justify-self: center;
    align-self: center;
    margin: 0 110pt;
}

th{
    font-weight: normal;
    font-size: 14pt;
}

.imgscroller{
    width: 100%;
}
.imgscroller .flexbox{
    display: flex;
    justify-content: space-between;
    flex-flow: row wrap;
}
.imgscroller .flexbox .item{
    height: 22vw;
    align-self: flex-start;
}

.imgscroller .imagetable .image{
    width: min-content;
}
.imgscroller .imagetable .desc{
    width: 100%;
    vertical-align: top;
    text-align: left;
}
.imgscroller img.smallimg{
    height: 125pt !important;
}
.imagetable{
    border-collapse: collapse;
    margin-bottom: 100pt;
}
.imagetable tr{
    border-bottom: 3pt solid #ea7208;
    border-collapse: collapse;
}

.dropped_title{
    margin-bottom: 0px;
    margin-top: 20pt;
}

.error{
    color: tomato;
    font-family: monospace;
    font-weight: initial;
}

.notice{
    border-left: 25pt solid transparent;
    padding: 5pt;
    background: url("notice.png");
    background-position: center left;
    background-repeat: no-repeat;
    background-origin: border-box;
    background-size: contain;
}

.backarrow{
    margin-left: -25pt;
    padding-right: 5pt;
    margin-top: -2pt;
}
