/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}

*:after,*:before{
    box-sizing: border-box;
}


@font-face {
    font-family: 'Atlanta';
    src: url('../fonts/Atlanta-Book.woff2') format('woff2'),
        url('../fonts/Atlanta-Book.woff') format('woff'),
        url('../fonts/Atlanta-Book.svg#Atlanta-Book') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body{
    font-family: 'Atlanta';
    color:#3366cc;
    font-size: 20.83px;
    line-height: auto;
    letter-spacing: -0.05em;
}

.site-container{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 40px 20px;
}

.site-content-container{
    width: 100%;
}

.authors-section{
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 70px;
    margin-bottom: 65px;
}

.section-title{
    font-size: 33px;
    color:#3399cc;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 80px;
}

.site-logo-container{
    width: 100%;
}

.site-logo{
    max-width:535px;
    margin:auto;
}
.site-log img{
    width: 100%;
    margin-left: -10px;
}

.authors ul{
    display: flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.authors ul li{
    position: relative;
    line-height: 30px;
}

.authors ul li:after{
    content:'—';
    display: inline-block;
    margin: 0 5px;
}

.contact-section{
    text-align: center;
}

a{
    color:inherit;
    text-decoration: none;
}

a:hover{
    color:#3399cc;
}

.authors ul li:last-child:after{
    display: none;
}

@media screen and (max-width: 767px) {
    .authors ul li{
        line-height: 25px;
        font-size: 18px;
    }

    .authors-section{
        margin-top: 30px;
        margin-bottom: 50px;
    }

    .section-title{
        margin-bottom: 25px;
    }
}