:root {
	--bgcolor: #1c1b22;
}

body {
	margin: 0;
	padding: 0;
	font-family:'Gill Sans';
	background-color: var(--bgcolor);
	color: white;
	/* background-color: #eeeeee; */
}

/* MOBILE CSS */
@media screen and (orientation:portrait) {

}

/* DESKTOP CSS */
@media screen and (orientation:landscape) {

}

.header {

	/* background-color: var(--bgcolor); */
	background-color: white;
	height:25vh;
	/* margin: auto; */
	width: 100vw;
	display: flex;
	justify-content: center;
	align-items: center;

	h1 {
		font-size: 12vw;
		font-style: italic;
	}
	h2 {
		font-size: calc(10px + 2vw);
		text-decoration: none;
		margin: 0;
		font-weight: normal;
		letter-spacing: 10%;
	}
	a {
		text-decoration: none;
		color: black;
	}
}

.nameplate {

	text-transform: uppercase;
	font-style: italic;
	/* background-color: white; */
	color: white;
	height:75vh;
	display: grid;
    grid-template-columns: 2fr 3fr;
    row-gap: 20px;
    place-items: center;
	justify-self: center;

	@media screen and (orientation:portrait) { 
		grid-template-columns: 1fr; 
		height: 100vh;
	}

	img {
		margin: auto;
		margin-top: 0;
		object-fit: cover;
		display:block;
		max-width: 100%;
		height:75vh;
		@media screen and (orientation:portrait) {
			height:66vh;
			width: 100%;
		}
	}

	.nameplate-text {
		text-align: left;
		display: grid;
		place-content: space-evenly;
		row-gap: 3.5vw;

		@media screen and (orientation:portrait) {
			text-align: center;
			row-gap: 2.5vw;

			h1 { font-size: 7.5vw; }
			h2 { font-size: 4.5vw; }
			h3 { font-size: 3.5vw; }
		}
	}

	h1, h2, h3 {
		margin: 0px;
	}

	h1 {
		/* margin:0px; */
		font-weight: bolder;
		font-size: 4.5vw;
		transform: scaleY(1.25);
	}
	h2 {
		/* margin-left:0px; */
		/* margin-top: 8px; */
		font-weight: 600;
		font-size: 3.25vw;
	} 
	h3 {
		/* margin-left:0px; */
		/* margin-top:10px; */
		font-weight: 600;
		font-size: 3vw;
	}
	iframe {
		margin: auto;
	}
}


.links {
	width: 100%;
	padding-top: 5%;
	padding-bottom: 5%;
	background-color: #010317;

	display: grid;
	grid-template-columns: 3fr 3fr 3fr;
	place-content: space-evenly;
	text-align: center;

	@media screen and (orientation:portrait) {
		grid-template-columns: 1fr;
	}


	a {
		text-transform: uppercase;
		margin: 0;
		padding-top: 2%;
		padding-bottom: 2%;
		color:white;
		opacity: 0.8;
		transition-duration: 175ms;
		text-decoration: none;
		font-style: italic;
		font-size: 2rem;
		letter-spacing: 2px;
		@media screen and (orientation:portrait) {
			font-size: 7vw;
		}
	}
	a:hover {
		opacity: 1;
		transition-duration: 175ms;
	}
}

main {
	background-color: #1c1b22;
	color: white;
	width:100%;
	@media screen and (orientation:portrait) { width: 100% }
	margin: 0px auto;
	text-align: center;

	h1 {
		font-size: 40px;
		font-weight: 400;
		margin-bottom: 0;
	}
	h2 {
		font-size: 30px;
		font-weight: 400;
		margin-bottom: 0;
	}
	h3 {
		font-size: 20px;
		font-weight: 400;
		margin: 5px;
	}
	p {
		font-size: 1.1rem;

	}
	sub {
		opacity: 0.8;
	}
	a {
		text-decoration: none;
		color:white;
		opacity: 0.8;
		transition-duration: 175ms;
	}
	a:hover {
		opacity: 1;
	}
	hr {
		opacity: 30%;
		margin-block: 75px;
	}

	img {
		/* height:100%; */
		width:auto;
		max-width:100%;
		object-fit:contain;
	}
}

.timeline {
	width: 90%;
	margin: auto;
	color:white;

	th {
		padding: 2%;
		text-transform: uppercase;
		font-style: italic;
	}
	
	td {
		padding: 1%;
		width: 0px;
		
	}

	tr:nth-child(even) {
		background-color:black;
	}
}

.imagebar {
	background-color: #080808;
}

.frame2 {
	width: 90%;
	margin: auto;
	padding-top: 5%;
	padding-bottom: 5%;
	/* margin-top:5%; */
	display: grid;
	place-content: space-evenly;
	h1 {
		margin: 0;
	}
	p {
		margin: auto;
		font-size: 1.25rem;
	}
}

.tellme {
	background-color: white; 
	width: 100%; 
	color: black; 
	display: grid;
	padding-top:20%;
	padding-bottom:20%;
	margin: auto;
	row-gap: 5%;
	place-content: center;


	h1, h2, h3 {
		margin-top: 0;
		margin-left: 5%;
		margin-right: 5%;
	}
	h1 {
		font-size: calc(6vw + 30px)
	}
	h2 {
		font-weight: bold;
		font-style: italic;
	}
	p {
		font-size: 1.25rem;
		margin-left: 5%;
		margin-right: 5%;
	}
	a {
		color: black;
	}
}
