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

body {
	margin: 0;
	font-family: "Inter", sans-serif;
	background-color: #343438;
	color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
}

.container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 110px;
	width: 100%;
}

h1 {
	text-align: center;
	font-size: calc(48px + 50 * ((100vw - 320px) / (1280 - 320)));
	font-weight: 700;
}

.button-group {
	display: flex;
	justify-content: center;
	gap: 15px;
}

.btn {
	padding: 16px 36px;
	font-size: calc(16px + (32 - 16) * ((100vw - 320px) / (1280 - 320)));
	font-weight: bold;
	cursor: pointer;
	text-decoration: none;
	transition: opacity 0.2s ease, transform 0.3s ease, box-shadow 0.3s ease;

	&:hover {
		opacity: 0.7;
		transform: scale(1.05);
		box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
	}
}

.btn-yes {
	background-color: #ffffff;
	color: #000000;
}

.btn-no {
	background-color: #4f4f4f;
	color: #ffffff;
}
