
body {
	margin: 0;
	background-color: black;
	color: white;
	font-family: "freight-sans-pro", sans-serif;
	font-weight: 400;
	font-style: normal;
}

header {
	position: absolute;
	top: 10px;
  	left: 50%;
  	transform: translate(-50%, 0);
}

main {
	margin: 0 0 1rem 0;
	padding: 0;
}

h1, h2, h3 {
	font-family: "bigmoore", serif;
	font-weight: 400;
	font-style: normal;
	white-space: nowrap;
}

h1 {
	color: white;
	font-weight: 400;
	letter-spacing: 0.1rem;
	font-size: 3.5rem;
  	text-align: center;
  	margin-top: 0;
  	margin-bottom: 0;
}
h2 {
	font-weight: 400;
	margin-top: -0.2rem;
	text-align: center;
	word-spacing: 1rem;
	letter-spacing: 0.1rem;

	@media screen and (min-width: 750px) {
		word-spacing: 3rem;
	}

	@media screen and (min-width: 670px) {
		word-spacing: 2rem;
	}
}

img#fredman {
	width: 100%;
}

.responsive-two-column-grid {
	display:block;
	margin: 1rem;
}

/* columns */
.responsive-two-column-grid > * {
    padding: 0 1rem;
}

/* tablet breakpoint */
@media (min-width:750px) {
    .responsive-two-column-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

iframe {
	width: 448px; 
	height: 252px;
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;

	@media screen and (min-width: 600px) {
		width: 560px; 
		height: 315px;
	}
}

footer {
	display: inline-block;
	border: 1px solid white;
	border-radius: 0.5rem;
	padding: 0.5rem;
	margin-left: 50%;
	margin-top: 2rem;
  	transform: translate(-50%, -50%);
}

footer a {
	color: white;
	text-decoration: none;
}




