body {
	margin: 0;
}

.base {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: #ff0066;
}

.frontpage {
	display: flex;
	flex-direction: row;
	height: 100vh;
	font-family: sans-serif;
/*	background: linear-gradient(to right, #9999ff 0%, #ff0066 100%);*/
	filter: contrast(100%) brightness(100%);
	background: linear-gradient(118deg, #9999ff 0%, rgba(0,0,0,0) 100%),url(/assets/noise.svg);
}

.frontpage div {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.frontpage a {
	text-decoration: none;
	font-weight: bold;
	font-size: 3vw;
	display: flex;
	align-items: center;
	justify-content: center;
}

.frontpage a img {
	position: absolute;
	opacity: 0;
	width: 25vw;
	box-shadow: 10px 10px 10px black;
	transition: .3s ease;
}

.frontpage a:hover img {
	opacity: 1;
}

#podcast {
/*	background-color: red;*/
}

#podcast a {
	color: black;
}

#book {
/*	background-color: blue;*/
}

#book a {
	color: white;
}

.splashscreen {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  height: 100%;
  width: 100%;
  background-color: black;
  justify-content: center;
  align-items: center;
  color: white;
  font-family: 'Trebuchet MS', sans-serif;
  font-size: 2vw;
  animation: splash 1s forwards 3s ease-in-out;
  z-index: 2;
}

.splashscreen object {
	width: 33vw;
}

footer {
	position: fixed;
	bottom: 30px;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: center;
	color: white;
	font-family: monospace;
	font-size: 14pt;
	margin-bottom: 10px;
}

footer div {
	cursor: pointer;
}

@keyframes splash {
	0% {
		opacity: 100%;
	}
	100% {
		opacity: 0%;
	}
}

.hs-form-iframe {
	height: 330px !important;
	width: 300px !important;
}

.hbspt-form {
	position: absolute !important;
	top: 50% !important;
	left: 50% !important;
	translate: -50% -50% !important;
	background-color: rgba(200, 200, 200, 0.7);
	display: none;
	backdrop-filter: blur(3px);
	height: 100vh;
	align-items: center;
	width: 100%;
	justify-content: center;
}

@media only screen and (max-width: 500px) {
  .frontpage {
  	flex-direction: column;
  	background: linear-gradient(152deg, #9999ff 0%, rgba(0,0,0,0) 100%),url(/assets/noise.svg);
  }
  .frontpage div {
	height: 100%;
  }
  .frontpage a {
	font-size: 30pt;
	z-index: 1;
  }
  .frontpage a img {
	display: none;
  }
  footer {
  	font-size: 14pt;
  }
  .splashscreen {
  	flex-direction: column;
  	font-size: 2vh;
  }
  .splashscreen object {
		width: 66vw;
	}
	#book {
		translate: 0 -40px;
	}
}

/*@supports (height: 100dvh) {
  .frontpage {
    height: 100dvh;
  }
}*/