@font-face {
    font-family: 'asap'; 
    src: url('Asap_Condensed/AsapCondensed-Medium.ttf') 
            format('truetype');
}

@font-face {
    font-family: 'report'; 
    src: url('1942-report/1942.ttf') 
            format('truetype');
}

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;}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
}

body {
    font-family: asap, Arial, sans-serif;
    letter-spacing: 0.1em;
    background-color: #333;
    background-image: url('../img/suzyhazelwood1.jpg');
    background-attachment: fixed;
    /*animation: slideShow 15s infinite;*/
    line-height: 1.6em;
    font-size: 1.2rem;
    color: #111;
}

@keyframes slideShow {
    0% { background-image: url('../img/suzyhazelwood1.jpg'); }
    33% { background-image: url('../img/suzyhazelwood1.jpg'); }

    34% { background-image: url('../img/suzyhazelwood2.jpg'); }
    66% { background-image: url('../img/suzyhazelwood2.jpg'); }

    67% { background-image: url('../img/suzyhazelwood3.jpg'); }
    100% { background-image: url('../img/suzyhazelwood3.jpg'); }
}

h2 {
    margin-bottom: 2em;
    font-weight: bold;
    font-size: 1.5rem;
    letter-spacing: 0.3em;
}

h3 {
    font-size: 1.3rem;
    color: #333;
}

p {
    margin-bottom: 1em;
}

a,
a:active,
a:visited,
a:focus {
    color: rgb(239, 0, 0);
    text-decoration: none;
}

a:hover {
    color: #fff;
}

b, strong {
    font-weight: bold;
}

i, em {
    font-style: italic;
}

small {
    font-size: 90%;
}

ul {
    margin: 0;
    margin-left: 1em;
    padding: 0;
}

li {
    list-style-type: square;
}

/* HERO */
.hero h1 {
    color: white;
    text-align: center;
    padding: 60px 20px 40px;
    font-size: 6rem;
    font-family: report, Arial, sans-serif;
    line-height: 100%;
}

#flicker-text span {
    display: inline-block;
    transition: opacity 0.1s, text-shadow 0.1s;
}


.flicker {
    opacity: 0.5;
    text-shadow: none;
}

.glow {
    text-shadow: 0 0 5px rgba(253, 247, 202, 0.6), 0 0 10px rgba(253, 247, 202, 0.6), 0 0 15px rgba(253, 247, 202, 0.6);
}

.cg {
    font-family: report, Arial, sans-serif;
    font-size: 1.4rem;
    font-weight: bold;
}

/* HAMBURGER */
.hamburger {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    width: 42px;
    height: 40px;
    cursor: pointer;
    z-index: 3000;
}

.hamburger span {
    position: absolute;
    height: 4px;
    width: 100%;
    background: white;
    transition: 0.3s;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 10px; }
.hamburger span:nth-child(3) { top: 20px; }

/* MORPH */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 10px;
}

/* NAV DESKTOP */
.nav-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    background-color: rgba(0, 0, 0, 1);
    background-image: url('../img/bg.jpg');
    background-repeat: no-repeat;
    display: flex;
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    margin-bottom: 0.2em;
}

.nav a {
    flex: 1;
    padding: 15px;
    text-align: center;
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav a.active,
.nav a:hover {
    background: rgba(255, 255, 255, 0.6);
    color: #333;
}

/* SIDEBAR */
.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 240px;
    height: 100vh;
    background: rgba(89, 89, 89, 0.9);
    padding-top: 80px;
    transform: translateX(100%);
    transition: 0.3s ease;
    z-index: 2500;
}

.sidebar.active {
    transform: translateX(0);
}

.sidebar a {
    display: block;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidebar a.active {
    background: #dcdcdc;
    color: #333;
}

/* OVERLAY */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    z-index: 2000;
}

.overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* MOBILE */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    .nav-wrapper {
        display: none;
    }
}

/* CONTENT */
.content {
    background: rgba(247, 252, 245, 0.8);
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.section {
    padding: 50px 40px;
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s;
    margin-bottom: 0.3em;
    border-radius: 6px;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section.dark {
    background: rgba(3, 3, 3, 0.87);
    color: white;
}

#legal .col1 {
    font-size: 0.9rem;
    line-height: 1em;
}

/* TOP BUTTON */
#toTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(3, 3, 3, 0.8);
    color: white;
    border: none;
    cursor: pointer;
    display: none;
    z-index: 3000;
    padding: 2px 15px 12px 15px;
    width: 50px;
    font-size: 1.4rem;
}

#toTop:hover {
     background: #888b8d;
}

/* IMAGE */
img {
    width: auto;
    max-width: 100%;
}

img#cover {
    box-shadow: 10px 20px 15px rgb(97, 96, 96);
}

#info img {
     opacity: 0.75;
}

/* GRID */
.row {
	border-bottom: solid 1px transparent;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
    width: 100%;
}

.row:after {
    content: ".";
	visibility: hidden;
	display: block;
	height: 0;
	clear: both;
}

.col1 {
    width: 100%;
     padding: 0 1em;
}

.col2 {
    width: 50%;
    float: left;
   padding: 0 1em;
}

.col3 {
    width: 40%;
    float: left;
    padding: 0 1em;
}

.col7 {
    width: 60%;
    float: left;
    padding: 0 1em;
}

.col20 {
    width: 15%;
    float: left;
    padding: 0 1em;
}

.col80 {
    width: 85%;
    float: left;
    padding: 0 1em;
}

.center {
    text-align: center;
}

img#logo {
    max-width: 260px;
}

.name {
	font-size: 112%;
}

@media screen and (max-width: 680px) {

    .col2, .col3, .col7, .col20, .col80 {
        width: 100%;
        float: none;
    }
	
	body {
		background-image: none;
		animation: slideShow 1005s infinite;
	}
	
	.hero h1 {
		color: white;
		text-align: center;
		padding: 60px 20px 40px;
		font-size: 3rem;
		font-family: report, Arial, sans-serif;
		line-height: 100%;
	}
	
	.content {
		background: rgba(255, 255, 255, 0.9);
	}
	
	.section {
		padding: 30px 20px;
	}

}