.banner {
	cursor: default;
	text-align: center;
	font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
	font-weight: lighter;
	text-shadow: 0px 0px 100px #000000;
	height: 98svh;
	width: auto;
	background-size: cover;
	background-position: center;
	background-image: url(../images/fever-dream-24/icthea-fd-13.jpeg);
}

.banner img {
	width: 100%;
	height: auto;
}

.banner h1 {
	border-bottom: 0.75vw solid var(--clr-accent);
	border-radius: 2vw;
	width: fit-content;
	margin: 0 auto;
	padding-top: 55vh;
	bottom: -5%;
	letter-spacing: 0.05em;

	z-index: 5;
}

#seymour {
	contain: layout, paint;
	margin-inline: auto;
		margin-top: -0.75rem;
	width: max-content;
	
	font-size: var(--fs-64);
	animation: bounce 2s ease-in-out 1s 7 alternate-reverse both;
}

#seymour:hover {
	cursor: pointer;
	animation-play-state: paused;
}

@keyframes bounce {
	from {
		transform: translateY(0px);
	}

	to {
		transform: translateY(-10px);
	}
}

@media screen and (max-width: 680px) {
	.banner {
		height: 95svh;

		h1 {
			padding-top: 65vh;
		}
	}
}