@import url('https://fonts.googleapis.com/css2?family=Major+Mono+Display');
@import url('https://fonts.googleapis.com/css?family=IBM+Plex+Mono:100,200,300,400,600,700');
@font-face {
    font-family: 'Lotuscoder';
    src: url('../font/Lotuscoder.woff2') format('woff2'),
        url('../font/Lotuscoder.woff') format('woff');
    font-weight: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Lotuscoder';
    src: url('../font/Lotuscoder-bold.woff2') format('woff2'),
        url('../font/Lotuscoder-bold.woff') format('woff');
    font-weight: bold;
    font-display: swap;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	max-width: 100%;
	font-family: 'Lotuscoder';
	font-size: 0.9rem;
    font-weight: normal;
    line-height: 1.4;
	color: #2D393D;
}


h1 { 
	font-family: 'Major Mono Display', monospace;
	font-size: 3.0rem;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.2;
    -webkit-text-stroke: 2px;
    overflow-wrap: break-word;
}
h2 {
    padding-top: 2.0rem;
    font-family: 'Lotuscoder';
    font-size: 0.9rem;
    font-weight: bold;
    color: #2D393D;
    letter-spacing: 1px;
    text-transform: uppercase;
}
h2 .tag {
    padding: 0.25rem 0.75rem;
    background: #F5E0F4;
    border-radius: 99px;
}
h3 { 
	padding-top: 1.0rem;
	font-family: 'IBM Plex Mono', monospace;
    color: #161C1E;
	font-weight: 400;
	font-size: 0.9rem;
	letter-spacing: 0.5px;
}

p {	
	padding: 1.0rem 4.0rem 0; 
    letter-spacing: -0.1px;
}

ul {	
	margin: 1rem 5% 1rem; 
    letter-spacing: -0.1px;
}

img {
	margin-top: 2.0rem;
	margin-left: auto; margin-right: auto;
	max-width: 100%;
	border: solid 1px #CEDADD;
	display: block;
}


a { 
    font-family: 'IBM Plex Mono', monospace;
	color: #05B9B6;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
	text-decoration: none; 
	outline: none;
}
a:hover { 
    border-bottom: solid 2px #05B9B6; }

button {
	position: fixed;
	top: 1.0rem;
	right: 2.0rem;
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.8rem;
	font-weight: 400;
	color: #FFF;
	letter-spacing: 1px;
	text-decoration: none;
	background-color: #8DA2A8;
	opacity: 0.8;
	padding: 0.5rem 1.0rem;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}
button:hover { 
	opacity: 1.0;
	text-decoration: none; 
}

iframe {
    width: 100%;
    height: 480px;
    border-radius: 4px;
    border: 0;
    overflow: hidden;
    box-shadow: 0px 0px 8px rgba(0,0,0,0.25);
}

hr {
	width: 10%;
	border: 0;
	height: 0;
    margin: 0;
	border-bottom: solid 2px rgba(206,218,221,0.5);
}

.container {
	max-width: 100%;
	background: #FFF;
}


/*** TITLE BAR ***/

.title-wrap {
	margin-top: 0;
	width: 100%;
	padding: 1.0rem 0;
    text-align: center;
}

.title {
	font-family: 'Major Mono Display';
	font-size: 1.0rem;
	line-height: 1.1;
    -webkit-text-stroke: 1px;
    vertical-align: middle;
}

img.img-title {
    display: inline;
    margin-top: 0;
    width: 2.0rem;
    padding: 0.25rem;
	border: none;
    vertical-align: middle;
}


/*** HERO ***/

.hero {
	display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    background: linear-gradient(0deg, #F3F6F6, #FFF);
    max-width: 100%;
	height: auto;
    min-height: 92vh;
    padding: 4.0rem 8.0rem 16.0rem;
    overflow: hidden;
    vertical-align: middle;
}
.hero img, .hero-text {
    max-width: 100%;
}
.hero img {
    display: flex;
    align-items: flex-start;
    margin: 0;
    width: 45%;
    height: auto;
    object-fit: contain;
    border: none;
    vertical-align: middle;
}
.hero-text {
    display: flex;
    margin: 0;
    width: 45%;
    flex-direction: column;
    vertical-align: middle;
}
.hero-text h1 { 
    margin-top: 0;
    padding-top: 0; 
}


/*** CONTENT ***/

.text {
    margin-top: -8.0rem;
    width: 67%;
    background: #FFF;
	padding: 2.0rem;
    margin-left: auto; margin-right: auto;
    box-shadow: 
        0px 16.0rem 8px 16px #FFF,
        0px 0px 8px rgba(0,0,0,0.1);
}

@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        width: 100%;
        height: auto;
        padding: 4.0rem 4.0rem 8.0rem;
        overflow: hidden;
    }
    .hero img { width: 100%; }
    .hero-text { 
        margin-top: 2.0rem; 
        width: 100%;
        padding: 5%;
    }
    .text { 
        margin-top: -4.0rem;
        width: 80%; }
    p { padding: 1.0rem 5% 0; }
}

.subhead {
	font-family: 'IBM Plex Mono';
	font-size: 1.25rem;
	font-weight: 600;
	color: #2D393D;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 0 0 0 1.0rem;
    margin: 2.0rem 0 1.0rem;
    border-left: solid 4px #CC65C7;
	display: block;
}

.bold { font-weight: bold;}

.caption {
	display: block;
	max-width: 80%;
	padding: 0.5rem 0;
	font-family: 'Lotuscoder';
	font-size: 0.8rem;
	color: #8DA2A8;
	font-style: italic;
	text-align: center;
	margin-left: auto; margin-right: auto;
}

.footnote {
	font-style: italic;
	color: #8DA2A8;
}

img.img-footer {
    width: 4.0rem;
    height: 4.0rem;
	border: none;
	padding: 1.0rem;
}

.footer {
    margin: 4.0rem 0 0 4.0rem;
    width: 100%;
    background-color: #FFF;
	background-image: url('../img/logo-pattern.svg'); 
	background-size: contain;
	font-size: 0.8rem;
    border-top: solid 1px #CEDADD;
}

.credits {
    padding: 0 5%;
}
.credits h1 {
    width: auto;
    font-family: 'Major Mono Display', monospace;
	font-weight: 600;
	font-size: 1.2rem;
	line-height: 1.5;
    text-align: left;
    margin-left: 0;
    padding-top: 2.0rem;
}