@font-face {
  font-family: "SteelFish RG";
  src: url("fonts/steelfish/Steelfish Rg.otf");
}

@font-face {
  font-family: "Quickless";
  src: url("fonts/quickless/Quickless.otf");
}

@font-face {
  font-family: "Quirky Shading";
  src: url("fonts/Quirky Shading.ttf");
}

@font-face {
  font-family: "Krusty Craft";
  src: url("fonts/krusty_craft/krusty craft.otf");
}

@font-face {
  font-family: "Caviar Dreams";
  src: url("fonts/caviar_dreams/CaviarDreams.ttf");
}

@font-face {
  font-family: "Built Titling";
  src: url("fonts/built_titling/built titling rg.otf");
}

body {
	font-family: sans-serif;
	background-color: black;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	z-index: 1;
}

audio {
	vertical-align: middle;
}

.header {
	text-align: center;
	background-color: #eea;
	font-size: 1.5em;
	padding-bottom: 5em;
	margin-bottom: -5em;
}

.header h1 {
	font-size: 5em;
	font-family: serif;
	text-shadow: 0 0 10px black;
}

.company-name {
	font-family: "SteelFish RG", serif;
	font-family: "Quirky Shading", serif;
	font-family: "Quickless", serif;
	font-family: "Caviar Dreams", serif;
	font-family: "Built Titling", serif;
	font-family: "Krusty Craft", serif;
	letter-spacing: 0.2rem;
}

.company-name a {
	font-weight: bold;
	color: unset;
	text-decoration: none;
	font-size: 1.5em;
}

.main {
	width: 100%;
	color: #eea;
	background-color: black;
	padding-top: 3em;
	padding-bottom: 1em;
	border-radius: 50em 50em 0 0 / 5em 5em 0 0;
	flex-grow: 1;
	box-shadow: 0 0 10px black;
}

.first::first-letter {
	-webkit-initial-letter: 3;
	initial-letter: 3;
	letter-spacing: 0.3rem;
}

.text-block {
	width: 50%;
	margin: auto;
	margin-bottom: 1em;
	font-size: 1.1em;
	text-wrap: balance;
}

.pod-link {
	font-weight: bold;
	color: white;
	text-decoration: none;
}

.pod-link:visited {
	color: white;
}

.footer {
	color: white;
	font-family: monospace;
	background-color: black;
	text-align: center;
	padding-bottom: 0.5em;
}

.action-button {
	width: fit-content;
	border: 1px solid black;
	border-radius: 15px;
	padding-left: 15px;
	padding-right: 15px;
}

.action-button:hover {
	background-color: rgba(255, 255, 255, 0.8);
}