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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: #000;
	color: #fff;
	font-family: "Myriad Pro", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
	font-size: 1.1875rem;
	line-height: 2;
	text-align: center;
}

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

h1,
h2 {
	margin: 0;
	font-weight: 400;
	text-transform: uppercase;
	line-height: 1.1;
}

h1 {
	font-size: clamp(2.5rem, 6vw, 4.5625rem);
	font-weight: 700;
	font-style: italic;
	letter-spacing: 0.375rem;
}

h2 {
	font-size: clamp(2rem, 5vw, 3.75rem);
	letter-spacing: 0.1875rem;
	margin-bottom: 2.5rem;
}

a {
	color: inherit;
}

.hero {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	padding: 3rem 1rem;
}

.hero img {
	width: min(1000px, 100%);
}

.hero-hint {
	margin: 0;
	font-size: 1.1rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	font-style: italic;
}

.banner {
	padding: 4rem 1rem;
}

.banner img {
	width: min(1000px, 100%);
}

.ways {
	padding: 6rem 1rem 4rem;
	border-top: 1px solid #222;
}

.ways-list {
	list-style: none;
	margin: 0 auto;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 350px));
	justify-content: center;
	gap: 0.5rem;
}

.ways-list a {
	display: block;
	transition: opacity 0.2s ease;
}

.ways-list a:hover,
.ways-list a:focus-visible {
	opacity: 0.8;
}

.guide {
	padding: 7rem 1rem;
	border-top: 1px solid #222;
	scroll-margin-top: 0;
}

.steps {
	list-style: none;
	counter-reset: step;
	max-width: 44rem;
	margin: 0 auto;
	padding: 0;
}

.steps li {
	counter-increment: step;
	margin: 0 0 1rem;
}

.steps li::before {
	content: counter(step) ". ";
	font-weight: 700;
}

.site-footer {
	padding: 6rem 1rem 3rem;
	border-top: 1px solid #222;
}

.site-footer img {
	width: 150px;
	margin-bottom: 2rem;
}

.site-footer p {
	margin: 0 0 1.5rem;
}

.footer-more {
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.back-to-top {
	font-size: 0.9rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

@media (max-width: 47.99em) {
	body {
		font-size: 1.0625rem;
		line-height: 1.7;
	}

	.hero {
		min-height: 70vh;
	}

	.ways-list {
		grid-template-columns: minmax(0, 300px);
	}

	.guide {
		padding: 4rem 1rem;
	}
}
