* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html,
body {
	height: 100%;
	width: 100%;
	overflow: hidden;
	font-family: Verdana, sans-serif;
}

.page {
	padding: 20px;
	height: 100%;

	display: flex;
	flex-direction: column;
	align-items: center;
}

.logo {
	width: 30%;
	max-width: 180px;

	height: auto;
	max-height: 20vh;
}

.logo-top {
	flex: 0 0 20%;
}

.logo-middle {
	width: 40%;
	padding-bottom: 10px;
}

.content {
	flex: 0 0 100%;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-evenly;
}

.title {
	font-size: clamp(8px, calc((4vw + 4vh) / 2), 36px);
	padding: 8px;
}

.buttons {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	align-items: center;
	padding-top: 9px;
}

.button {
	background-color: #ffc20e;
	color: black;
	padding: 16px 24px;
	font-size: 16px;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
	text-decoration: none;
	font-weight: bold;
	font-variant: small-caps;
	margin: 5px;
	white-space: nowrap;
}

.button:hover {
	background-color: #ffd147;
	box-shadow: 0 8px 10px rgba(0, 0, 0, 0.2);
	/* transform: translateY(-2px); */
}

.button:active {
	background-color: #d5a208;
	/* transform: translateY(0); */
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
