@font-face {
    font-family: Elegant Typewriter;
    src: url(https://files.catbox.moe/7xnlsp.ttf);
}
@font-face {
    font-family: Elegant Typewriter;
    src: url(https://files.catbox.moe/7r8hse.ttf);
    font-weight: bold;
}

@font-face {
    font-family: Badly Stamped;
    src: url(https://files.catbox.moe/s3z99w.ttf);
}

body {
	background-image: url(https://files.catbox.moe/3zbuug.webp);
	background-size: 13%;
	font-family: Elegant Typewriter, Lucida Sans Typewriter, Courier New, monospaced;
}

h1 {
	margin: 0px;
	font-size: 2.2em;
	background-image: url(https://files.catbox.moe/5z91ri.gif);
	background-size: 40px;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-stroke: 1.5px black;
	font-family: Badly Stamped;
	letter-spacing: -1.5px;
	display:inline-block;
    -webkit-transform:scale(1,1.4);
	margin-bottom: 10px;
}

h1:hover {
	transition-duration: 0.45s;
	-webkit-transform:scale(1.1,1);
	background-image: url(https://files.catbox.moe/cb86v0.gif);
}

.layout {
	width: 60%;
	color: black;
	margin: auto;
	margin-top: 10px;
	border-radius: 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 10px;
	border-style: solid;
	background-image: url(https://files.catbox.moe/ayj2e7.jpg);
	filter: drop-shadow(2px 2px 3px black);
}

header {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	width: 95%;
	margin-top: 5px;
	text-align:center;
}

main {
	margin: 20px;
	background-image: url(https://files.catbox.moe/cb86v0.gif);
	background-size: 40px;
	border-radius: 30px;
	background-color: black;
	width: 85%;
	padding: 17px;
	position: relative;
	filter: drop-shadow(2px 2px 3px black);
}

.button-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	padding: 10px;
	background-color: grey;
	background-image: url(https://files.catbox.moe/cb86v0.gif);
	background-size: 40px;
	border-radius: 10px;
	filter: drop-shadow(2px 2px 3px black);
}

.btn {
	cursor: pointer;
	border-radius: 10px;
	padding: 5px 7px;
	font-size: 1.1em;
	font-family: Elegant Typewriter, Lucida Sans Typewriter, Courier New, monospaced;
	filter: drop-shadow(2px 2px 2px black);
}

.btn:hover {
	transform: scale(1.2);
	transition-duration: 0.15s;
}

.filterDiv {
	position: absolute;
	display: none;
}

.filterDiv:hover {
	transform: scale(1.4);
	transition-duration: 0.25s;
	z-index: 2;
}

.filterDiv + .description {
	color: white;
	background-color: black;
	padding: 10px;
	border-radius: 5px;
	position: absolute;
	opacity: 0%;
	display: none;
}
.filterDiv:hover + .description {
	opacity: 100%;
	display: block;
	transition-duration: 0.25s;
	z-index: 3;
}

.show {
  display: block;
}

.homepage-link {
	position: absolute;
	right: 30px;
	bottom: 5px;
	color: #a288d2;
	font-size: 0.9em;
}

.homepage-link:hover {
	color: white;
	letter-spacing: 0.8px;
	transition-duration: 0.25s;
}

@media only screen and (max-width: 600px) {
	.layout {
		width: 80%;
		margin-top: 70px;
	}
	
	header {
		flex-direction: column;
		justify-content: center;
		width: 90%;
		margin-top: 20px;
	}
	
	h1 {
		margin-bottom: 30px;
	}
	
	.button-container {
		padding: 7px;
	}
	
	main {
		width: 92%;
	}
}