@charset "UTF-8";
*, *::before, *::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	background-image: url("imagesforfinal/backgroundimage.jpg")
}

.slideshow {
	width: 100vw;
	height: 100vh;
	position: relative;
	overflow: hidden;
}

.slideshow > ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.slide {
	position: absolute;
	inset: 0;
	opacity: 0;
}

.slide > img {
	display:block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}
.slide[data-active] {
	opacity: 1;
}

.slideshow-button {
	position: absolute;
	z-index: 2;
	background: none;
	border: none;
	font-size: 4rem;
	top: 50%;
	transform: translateY(-50%);
	color:azure;
	cursor: pointer;
	border-radius: .25rem;
	padding: 0, .5rem;
	background-color:rgba(0, 0, 0, .5);
}

.slideshow-button:hover,
.slideshow-button:focus {
	color: white;
	background-color: rgba(0 ,0 ,0 , .9);
}

.slideshow-button.prev {
	left: 1rem;
}

.slideshow-button.next {
	right: 1rem;
}

h1{
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	text-align: center;
	background-color: white;
	padding: 3px;
	color: saddlebrown;
}

h3{
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	text-align: center;
	background-color: white;
	padding: 3px;
	color: saddlebrown;
}

p{
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	text-align: center;
	background-color: white;
	padding: 3px;
	color: saddlebrown;
}




