html, body {
	width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
}

body {
	overflow-x: hidden;
	font-family: 'EB Garamond', serif;
	font-size: 1.4em;
	position: relative;
	background: #fff;
	color: #000;
}

img{
    max-width: 100%;
	display: block;
    height: auto;
	margin: auto;
}


video {
  width: 100%;
  height: auto;
}

.topimage {
	height: 100%;
	background-image:url('images/topimage.jpg');
	background-repeat: no-repeat;
	background-position: 40% center;
	background-size:cover;
}

.headline-container {
	background-image: linear-gradient(to bottom, rgba(0,0,0,0.0), rgba(0,0,0,0.9));
}

.subhead {
	font-family: 'Josefin Slab', serif;
	color:  #fff7e6;
	text-align: center;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 1.2em;
	margin-bottom: 0px;
	padding-bottom: 0px;
}

.headline {
	font-family: 'Suez One', serif;
	color:  #fff7e6;
	line-height: 1.2em;
	text-align: center;
	padding-top: 0px;
	padding-bottom: 10px;
	
}

.lede {
	font-size: 1.2em;
}

.h1style {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 1.8em;
	text-align: center;
	margin-top: 50px;
	margin-bottom: 30px;
	padding-left: 10px;
	background: #0066cc;
	color: #fff;
	box-shadow: 5px 5px #cccccc;
	margin-left: 15px;
	margin-right: 15px;
	width: fit-content;
	max-width: 90%;
	transform: skewX(-15deg);
	margin-right: auto; margin-left: auto;
}

.abc {
	transform: skewX(15deg);
	padding-left: 30px;
	padding-right: 30px;
	padding-bottom: 0px;
}

.timeline {
	background-image: url('images/timeline.jpg');
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center center;
	background-size: cover;
	font-family: 'Jost', sans-serif;
	color: #fff;
	font-size: 0.8em;
	
}

.timeline-name {
	font-size: 1.5em;
}

.timeline-bg {
	background-color: rgba(0,0,0,0.6);
}

.timeline-left {
	text-align: right;
	padding-right: 10px;
	color: #ff8c00;
	
}

.timeline-right {
	text-align: left;
	padding-left: 10px;
	border-left: 1px solid #fff;
}

.timeline-headline {
	color: #ff8c00;
}

.caption {
	font-size: 0.8em;
	color: #333333;
	padding-top: 5px;
}


.quote {
	padding: 10px;
	border-radius: 0px 30px 30px 30px;
	background-color: #d9d9d9;
}

.person {
	font-family: 'Jost', sans-serif;
	font-weight: bold;
	text-align: center;
	color: #3b5998 ;
	padding-bottom: 10px;
}

.profile {
	max-width: 80px;
	border-radius: 50%;
	margin-top: 0px;
}

#scroll-icon {
	max-width: 60px;
}


.go {
        -webkit-animation: updown 0.5s infinite alternate;
        animation: updown 0.5s infinite alternate;
    }
	
    @-webkit-keyframes updown {
        0% { transform: translateY(0); }
        100% { transform: translateY(-10px); }
    }
    @keyframes updown {
        0% { transform: translateY(0); }
        100% { transform: translateY(-10px); }
    }

.footer {
	font-size: 0.9em;
}

.share {
	font-size: 1.1em;
}


/*Back to top*/
#btt {
    position:fixed;
    right:10px;
    bottom:10px;
    cursor:pointer;
    width:45px;
    height:45px;
    background-color:rgba(255, 71, 26, 0.5);
    text-indent:-9999px;
    display:none;
    -webkit-border-radius:45px;
    -moz-border-radius:45px;
    border-radius:45px;
	z-index: 99999;
}

#btt span {
    position:absolute;
    top:50%;
    left:50%;
    margin-left:-8px;
    margin-top:-12px;
    height:0;
    width:0;
    border:8px solid transparent;
    border-bottom-color:#ffffff;
}

#btt:hover {
    background-color:#ff3300;
    opacity:1;filter:"alpha(opacity=100)";
    -ms-filter:"alpha(opacity=100)";
}