/********************************************************
Slideshow
********************************************************/

.Slideshow {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.Slideshow ::selection {
	color: red;
}

/********************************************************
Slide
********************************************************/

.Slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: none;
	padding: 2rem;
}

.Slide h1,
.Slide h2 {
	font-size: 4rem;
	line-height: 1.1;
}

.Slide p {
	margin-bottom: 1em;
	font-size: 2rem;
}

.Slide a {
	color: currentColor;
	font-style: italic;
}

.Slide--image,
.Slide--video {
	align-items: center;
	justify-content: center;
	background: black;
	color: yellow;
}
.Slide.is-active {
	display: flex;
	flex-direction: column;
}

.Slide--text {
	gap: 1rem;
}

.Slide-iframe {
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: white;
	box-shadow: 0px 10px 20px rgba(0,0,0,0.5);
}

.Slide--text,
.Slide--url {
	color: black;
	background: yellow;
}
.Slide--url {
	flex-direction: column;
	gap: 1rem;
}

.Slide-image,
.Slide-video {
	max-width: 100%;
	max-height: 100%;
}

.Slide-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 1rem;
	font-size: 1.5rem;
}

.Slide--url .Slide-caption,
.Slide--text .Slide-caption,
.Slide--pdf .Slide-caption {
	position: static;
	padding: 0;
}

.Slide-notes {
	display: none;
}

.Slide-bodyText {
	flex: 1;
}

.Slide-bodyText--rendering {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.Slide pre {
	margin: 0;
	padding: 1rem;
	background: black;
	border-radius: 5px;
	color: white;
	overflow: scroll;
}

.Slide--pdf {
	gap: 1rem;
}

.Slide-pdf {
	flex: 1;
	border-radius: 5px;
}

.Reset {
	background: white;
	padding: 1rem;
	border-radius: 5px;
}

.Reset * {
	all: revert;
}
