* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: sans-serif;
}

body,
html {
	width: 100%;
	min-height: 100%;
	background-color: #1e1f1c;
	color: #e8e8e8;
	user-select: none;
	padding: 4vw;
	overflow: hidden;
}
h1 {
	font-size: 3rem;
	margin-bottom: 2rem;
}
img {
	margin-top: 2rem;
	width: 100%;
	max-width: 500px;
	border-radius: 8px;
}
.toast {
	background: #000;
	padding: 12px 24px;
	border-radius: 8px;
	font-size: 14px;
	position: absolute;
	bottom: 0px;
	opacity: 0;
	left: 50%;
	transform: translateX(-50%);
	transition: all 0.5s ease;
	width: max-content;
}

.toast.active {
	bottom: 50px;
	opacity: 1;
}
