/* ── Dogica Font ──────────────────────────────────────────── */
@font-face {
	font-family: "Dogica";
	src: url("fonts/dogica.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Dogica";
	src: url("fonts/dogicabold.ttf") format("truetype");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

/* ── KPS Color Palette ─────────────────────────────────────── */
:root {
	--purple: #ca00fc;
	--purple-light: rgba(202, 0, 252, 0.14);
	--magenta: #c300f4;
	--magenta-mid: rgba(195, 0, 244, 0.59);
	--lavender: #eca3ff;
	--lavender-mid: rgba(236, 163, 255, 0.78);
	--white: #ffffff;
	--black: #000000;
	--correct: #22c55e;
	--correct-bg: #bbf7d0;
	--incorrect: #ef4444;
	--incorrect-bg: #fecaca;
	--border: 3px solid var(--black);
	--shadow: 6px 6px 0 var(--black);
	--shadow-lg: 10px 10px 0 var(--black);
	--shadow-sm: 4px 4px 0 var(--black);
	--radius: 8px;
	--font: "Lexend", system-ui, -apple-system, sans-serif;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	font-size: 16px;
	scroll-behavior: smooth;
}

body {
	font-family: var(--font);
	color: var(--black);
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	background-color: #f0d0ff;
	background-image: url("assets/background/background.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

button {
	font-family: var(--font);
	cursor: pointer;
}

/* ── Passcode Gate ────────────────────────────────────────── */
.gate-overlay {
	position: fixed;
	inset: 0;
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #f0d0ff;
	background-image: url("assets/background/background.png");
	background-size: cover;
	background-position: center;
	transition: opacity 0.4s ease;
	padding: 1rem;
}

.gate-overlay.hidden {
	opacity: 0;
	pointer-events: none;
}

.gate-card {
	max-width: 400px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.25rem;
	padding: 2.5rem 2rem;
}

.gate-logo {
	height: 60px;
	width: auto;
}

.gate-title {
	font-size: 1.4rem;
	font-weight: 700;
}

.gate-input {
	width: 100%;
	padding: 0.75rem 1rem;
	font-family: var(--font);
	font-size: 1rem;
	border: var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	outline: none;
	text-align: center;
	transition: box-shadow 0.15s ease;
}

.gate-input:focus {
	box-shadow: var(--shadow);
}

.gate-error {
	color: var(--incorrect);
	font-size: 0.85rem;
	font-weight: 600;
	opacity: 0;
	transition: opacity 0.2s ease;
}

.gate-error.visible {
	opacity: 1;
}

.gate-btn {
	background: var(--purple);
	color: var(--white);
	padding: 0.75rem 2rem;
	font-size: 1.05rem;
	width: 100%;
}

.gate-btn:hover {
	background: var(--magenta);
}

.gate-input.shake {
	animation: pulse-incorrect 0.4s ease;
	border-color: var(--incorrect);
}

/* ── Top Bar ──────────────────────────────────────────────── */
.top-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.75rem 2rem;
	background: #f4c6fe;
	position: sticky;
	top: 0;
	z-index: 100;
}

.logo-link {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.logo {
	height: 42px;
	width: auto;
	object-fit: contain;
}

.logo-skm {
	height: 60px;
}

.top-bar-center {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 1rem;
}

.game-title {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	white-space: nowrap;
	background: var(--white);
	border: 3px solid var(--black);
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	padding: 0.4rem 1.25rem;
	text-transform: uppercase;
}

.game-title-text {
	font-family: "Dogica", monospace;
	overflow: hidden;
	text-overflow: ellipsis;
}

.title-daisy {
	height: 48px;
	width: 48px;
	object-fit: contain;
	flex-shrink: 0;
	animation: daisy-spin 8s linear infinite;
}

.title-daisy-right {
	animation-direction: reverse;
}

@keyframes daisy-spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

/* ── Shared Button Base ───────────────────────────────────── */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 0.95rem;
	border: var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	transition:
		transform 0.15s ease,
		box-shadow 0.15s ease,
		background 0.15s ease;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
}

.btn:hover {
	transform: translate(-2px, -2px);
	box-shadow: var(--shadow);
}

.btn:active {
	transform: translate(2px, 2px);
	box-shadow: 1px 1px 0 var(--black);
}

/* Credits button */
.btn-credits {
	background: var(--white);
	color: var(--black);
	height: 44px;
	padding: 0 1.1rem;
	font-size: 0.85rem;
	flex-shrink: 0;
}

/* ── Game Area ────────────────────────────────────────────── */
.game-area {
	flex: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	padding: 2rem;
	max-width: 1200px;
	width: 100%;
	margin: 2rem auto;
	align-items: stretch;
}

/* ── Card Base ────────────────────────────────────────────── */
.card {
	background: var(--white);
	border: 4px solid var(--black);
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
	padding: 2rem;
	transition:
		opacity 0.35s ease,
		transform 0.35s ease;
}

/* ── Explanation Card (Left) ──────────────────────────────── */
.card-explanation {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.card-explanation .media-container {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.card-explanation .question-media {
	object-fit: contain;
	max-height: 550px;
}

.media-container {
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--white);
}

.question-media {
	width: 100%;
	height: auto;
	display: block;
}

.media-container.hidden {
	display: none;
}

.media-mobile {
	display: none;
}

.media-mobile .question-media {
	max-height: 300px;
	object-fit: contain;
}

.explanation-container {
	opacity: 0;
	max-height: 0;
	overflow: hidden;
	transition:
		opacity 0.4s ease,
		max-height 0.5s ease;
}

.explanation-container.visible {
	opacity: 1;
	max-height: 300px;
}

.explanation-label {
	display: inline-block;
	background: var(--purple);
	color: var(--white);
	border: 2px solid var(--black);
	border-radius: 4px;
	padding: 0.3rem 0.85rem;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-bottom: 0.65rem;
}

.explanation-text {
	font-size: 1.05rem;
	line-height: 1.65;
	color: #1a1a1a;
	background: var(--purple-light);
	border-left: 4px solid var(--purple);
	padding: 1rem 1.25rem;
	border-radius: 0 var(--radius) var(--radius) 0;
}

/* ── Question Card (Right) ────────────────────────────────── */
.card-question {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.question-counter {
	display: inline-block;
	align-self: flex-start;
	background: var(--purple);
	color: var(--white);
	border: 2px solid var(--black);
	border-radius: 4px;
	padding: 0.3rem 0.85rem;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.scenario-text {
	font-size: 1.05rem;
	line-height: 1.65;
	background: var(--purple-light);
	border-left: 4px solid var(--purple);
	padding: 1rem 1.25rem;
	border-radius: 0 var(--radius) var(--radius) 0;
}

.question-text {
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1.4;
}

/* ── Option Buttons ───────────────────────────────────────── */
.options-container {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.btn-option {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.85rem;
	width: 100%;
	text-align: left;
	background: var(--white);
	color: var(--black);
	border: var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	padding: 0.85rem 1rem;
	font-size: 0.95rem;
	font-weight: 500;
	font-family: var(--font);
	cursor: pointer;
	transition:
		transform 0.15s ease,
		box-shadow 0.15s ease,
		background 0.2s ease,
		color 0.2s ease;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
}

.btn-option:hover:not(:disabled) {
	background: var(--lavender);
	transform: translate(-2px, -2px);
	box-shadow: var(--shadow);
}

.btn-option:active:not(:disabled) {
	transform: translate(2px, 2px);
	box-shadow: 1px 1px 0 var(--black);
}

.option-id {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.2rem;
	height: 2.2rem;
	border-radius: 50%;
	background: var(--lavender);
	border: 2px solid var(--black);
	font-weight: 700;
	font-size: 0.9rem;
	flex-shrink: 0;
	transition: background 0.2s ease;
}

.option-text {
	flex: 1;
	line-height: 1.45;
}

/* ── Daisy Bloom ──────────────────────────────────────────── */
.btn-option.correct .option-id {
	overflow: visible;
	border: none;
	background: transparent;
}

.daisy-bloom {
	width: 3.6rem;
	height: 3.6rem;
	object-fit: contain;
	margin: -0.7rem;
	animation: bloom 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes bloom {
	0% {
		transform: scale(0) rotate(-120deg);
		opacity: 0;
	}
	50% {
		transform: scale(1.5) rotate(20deg);
		opacity: 1;
	}
	75% {
		transform: scale(1.15) rotate(-5deg);
		opacity: 1;
	}
	100% {
		transform: scale(1.2) rotate(0deg);
		opacity: 1;
	}
}

/* ── Confetti ─────────────────────────────────────────────── */
.confetti-burst {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 300px;
	max-height: 300px;
	pointer-events: none;
	z-index: 5;
}

/* ── Answer Feedback ──────────────────────────────────────── */
.btn-option.correct {
	background: var(--correct-bg);
	border-color: var(--correct);
	animation: pulse-correct 0.4s ease;
}

.btn-option.correct .option-id {
	background: transparent;
	color: var(--white);
	border-color: transparent;
}

.btn-option.incorrect {
	background: var(--incorrect-bg);
	border-color: var(--incorrect);
	animation: pulse-incorrect 0.4s ease;
}

.btn-option.incorrect .option-id {
	background: var(--incorrect);
	color: var(--white);
	border-color: var(--incorrect);
}

.btn-option:disabled {
	cursor: default;
	opacity: 0.75;
}

.btn-option:disabled.correct,
.btn-option:disabled.incorrect {
	opacity: 1;
}

@keyframes pulse-correct {
	0% {
		transform: scale(1);
	}
	40% {
		transform: scale(1.025);
	}
	100% {
		transform: scale(1);
	}
}

@keyframes pulse-incorrect {
	0% {
		transform: scale(1);
	}
	15% {
		transform: translateX(-4px);
	}
	30% {
		transform: translateX(4px);
	}
	45% {
		transform: translateX(-3px);
	}
	60% {
		transform: translateX(3px);
	}
	75% {
		transform: translateX(-1px);
	}
	100% {
		transform: translateX(0);
	}
}

/* ── Next Button ──────────────────────────────────────────── */
.btn-next {
	background: var(--purple);
	color: var(--white);
	padding: 0.85rem 1.5rem;
	font-size: 1rem;
	align-self: stretch;
	opacity: 0;
	transform: translateY(12px);
	pointer-events: none;
	transition:
		opacity 0.3s ease,
		transform 0.3s ease,
		background 0.15s ease,
		box-shadow 0.15s ease;
}

.btn-next.visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.btn-next:hover {
	background: var(--magenta);
	transform: translate(-2px, -2px);
	box-shadow: var(--shadow);
}

.btn-next.visible:active {
	transform: translate(2px, 2px);
	box-shadow: 1px 1px 0 var(--black);
}

/* ── Question Transition ──────────────────────────────────── */
.game-area.transitioning .card-explanation,
.game-area.transitioning .card-question {
	opacity: 0;
	transform: translateY(16px);
}

/* ── Completion Card ──────────────────────────────────────── */
.card-completion {
	display: none;
	grid-column: 1 / -1;
	text-align: left;
	padding: 3rem 2rem;
	max-width: 600px;
	width: 100%;
	margin: 0 auto;
	justify-self: center;
	flex-direction: column;
	gap: 1rem;
}

.card-completion.visible {
	display: flex;
	align-items: flex-start;
	animation: pop-in 0.5s ease;
}

.completion-divider {
	width: 100%;
	border: none;
	border-top: 3px solid var(--black);
	margin: 1.5rem 0;
}

.completion-icon {
	display: none;
}

.completion-title {
	font-size: 2rem;
	font-weight: 700;
}

.completion-message {
	font-size: 1.1rem;
	line-height: 1.6;
}

.completion-sub {
	font-size: 0.95rem;
	line-height: 1.6;
	color: #444;
}

/* ── Feedback Form ────────────────────────────────────────── */
.feedback-form {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	text-align: left;
	margin-top: 0.5rem;
}

.feedback-field {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.feedback-label {
	font-size: 0.95rem;
	font-weight: 700;
}

.feedback-optional {
	font-weight: 400;
	color: #888;
}

.feedback-required {
	color: #e74c3c;
	font-weight: 700;
}

.feedback-scale-hint {
	font-size: 0.88rem;
	font-weight: 600;
	color: #555;
	background: var(--purple-light);
	border-left: 4px solid var(--purple);
	padding: 0.6rem 1rem;
	border-radius: 0 var(--radius) var(--radius) 0;
}

.feedback-error {
	display: none;
	color: #e74c3c;
	font-size: 0.82rem;
	font-weight: 600;
	margin: 0;
}

.feedback-error.visible {
	display: block;
}

.feedback-textarea.invalid,
.feedback-input.invalid {
	border-color: #e74c3c;
	box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.15);
}

.star-rating.invalid .star-btn {
	color: #e7a8a0;
}

/* ── Radio Group (Role Selector) ─────────────────────────── */
.radio-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.radio-option {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	padding: 0.6rem 1rem;
	background: var(--white);
	border: var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	cursor: pointer;
	font-size: 0.95rem;
	font-weight: 500;
	transition:
		background 0.15s ease,
		transform 0.15s ease,
		box-shadow 0.15s ease;
	user-select: none;
}

.radio-option:hover {
	background: var(--lavender);
	transform: translate(-2px, -2px);
	box-shadow: var(--shadow);
}

.radio-option:active {
	transform: translate(2px, 2px);
	box-shadow: 1px 1px 0 var(--black);
}

.radio-option input[type="radio"] {
	appearance: none;
	-webkit-appearance: none;
	width: 1.3rem;
	height: 1.3rem;
	border: 2.5px solid var(--black);
	border-radius: 50%;
	flex-shrink: 0;
	position: relative;
	cursor: pointer;
	transition: border-color 0.15s ease;
}

.radio-option input[type="radio"]:checked {
	border-color: var(--purple);
}

.radio-option input[type="radio"]:checked::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 0.6rem;
	height: 0.6rem;
	background: var(--purple);
	border-radius: 50%;
}

.radio-option:has(input:checked) {
	background: var(--purple-light);
	border-color: var(--purple);
}

.radio-group.invalid .radio-option {
	border-color: #e74c3c;
}

.star-rating {
	display: flex;
	gap: 0.35rem;
	align-self: flex-start;
}

.star-btn {
	background: none;
	border: none;
	font-size: 2.2rem;
	color: #ccc;
	padding: 0;
	line-height: 1;
	transition:
		color 0.15s ease,
		transform 0.15s ease;
}

.star-btn:hover,
.star-btn.active {
	color: #f4ce5b;
	transform: scale(1.2);
}

.star-btn.active {
	transform: scale(1);
}

.feedback-textarea,
.feedback-input {
	width: 100%;
	padding: 0.75rem 1rem;
	font-family: var(--font);
	font-size: 0.95rem;
	border: var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	outline: none;
	transition: box-shadow 0.15s ease;
	resize: vertical;
}

.feedback-input {
	resize: none;
}

.feedback-textarea:focus,
.feedback-input:focus {
	box-shadow: var(--shadow);
}

.feedback-hint {
	font-size: 0.8rem;
	color: #777;
	line-height: 1.45;
}

.btn-submit-survey {
	background: var(--purple);
	color: var(--white);
	padding: 0.85rem 2rem;
	font-size: 1.05rem;
	align-self: flex-start;
	margin-top: 0.5rem;
}

.btn-submit-survey:hover {
	background: var(--magenta);
}

.btn-submit-survey:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.survey-submitted {
	text-align: center;
	padding: 1rem 0;
}

.btn-restart {
	background: var(--purple);
	color: var(--white);
	padding: 0.85rem 2rem;
	font-size: 1.05rem;
	align-self: flex-start;
	margin-top: 0.5rem;
}

.btn-restart:hover {
	background: var(--magenta);
}

@keyframes pop-in {
	0% {
		opacity: 0;
		transform: scale(0.9) translateY(20px);
	}
	100% {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
	background: transparent;
	padding: 1.5rem 2rem;
	margin-top: auto;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
}

.footer-row {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.footer-label {
	font-weight: 700;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.social-links {
	display: flex;
	gap: 0.75rem;
}

.social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	background: var(--white);
	color: var(--black);
	text-decoration: none;
	transition:
		transform 0.15s ease,
		box-shadow 0.15s ease,
		background 0.15s ease;
}

.social-link:hover {
	background: var(--lavender);
	transform: translate(-2px, -2px);
	box-shadow: var(--shadow);
}

.social-link:active {
	transform: translate(2px, 2px);
	box-shadow: 1px 1px 0 var(--black);
}

.footer-copy {
	font-size: 0.78rem;
	color: #666;
}

/* ── Credits Modal ────────────────────────────────────────── */
.modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
	padding: 1rem;
}

.modal-overlay.visible {
	opacity: 1;
	pointer-events: auto;
}

.modal-card {
	position: relative;
	max-width: 440px;
	width: 100%;
	text-align: center;
	transform: scale(0.92);
	transition: transform 0.3s ease;
}

.modal-overlay.visible .modal-card {
	transform: scale(1);
}

.modal-close {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	width: 36px;
	height: 36px;
	border: 2px solid var(--black);
	border-radius: 50%;
	background: var(--lavender);
	font-size: 1.3rem;
	font-weight: 700;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition:
		transform 0.15s ease,
		background 0.15s ease;
}

.modal-close:hover {
	background: var(--incorrect-bg);
	transform: rotate(90deg);
}

.modal-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1.25rem;
}

.credits-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	margin-bottom: 1.25rem;
	text-align: left;
}

.credits-list li {
	background: var(--purple-light);
	border: 2px solid var(--black);
	border-radius: 4px;
	padding: 0.5rem 0.85rem;
	font-size: 0.92rem;
}

.credits-note {
	font-size: 0.85rem;
	color: #555;
	line-height: 1.5;
}

/* ── Responsive: Tablet ───────────────────────────────────── */
@media (max-width: 1023px) {
	.game-area {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		padding: 1.5rem;
		margin: 1.5rem auto;
	}

	.card-completion {
		max-width: 100%;
	}
}

/* ── Responsive: Mobile ───────────────────────────────────── */
@media (max-width: 767px) {
	.top-bar {
		flex-wrap: wrap;
		padding: 0.6rem 1rem;
		gap: 0.5rem 0;
	}

	.logo-link:first-child {
		order: 1;
	}

	.logo-link:last-of-type {
		order: 2;
		margin-left: auto;
	}

	.top-bar-center {
		position: static;
		transform: none;
		order: 3;
		flex-basis: 100%;
		justify-content: center;
		padding-top: 0.5rem;
		margin-top: 0.35rem;
	}

	.logo {
		height: 30px;
	}

	.logo-skm {
		height: 42px;
	}

	.game-title {
		font-size: 0.95rem;
		padding: 0.3rem 0.75rem;
	}

	.title-daisy {
		height: 32px;
		width: 32px;
	}

	.btn-credits {
		padding: 0.35rem 0.75rem;
		font-size: 0.75rem;
	}

	.card-explanation {
		display: none;
	}

	.media-mobile {
		display: block;
	}

	.media-mobile.hidden {
		display: none;
	}

	.game-area {
		padding: 1rem;
		margin: 1rem auto;
		gap: 1rem;
	}

	.card {
		padding: 1.25rem;
		box-shadow: var(--shadow-sm);
	}

	.scenario-text {
		font-size: 0.95rem;
		padding: 0.75rem 1rem;
	}

	.question-text {
		font-size: 1.05rem;
	}

	.btn-option {
		padding: 0.75rem 0.85rem;
		font-size: 0.9rem;
	}

	.option-id {
		width: 1.9rem;
		height: 1.9rem;
		font-size: 0.8rem;
	}

	.completion-title {
		font-size: 1.6rem;
	}

	.completion-icon {
		font-size: 3rem;
	}

	.footer {
		padding: 1rem;
	}
}
