html {
	box-sizing: border-box;
	scroll-behavior: smooth;
}
*,
*:before,
*:after {
	box-sizing: inherit;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h2,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}
body {
	line-height: 1;
}
ol,
ul {
	list-style: none;
}
blockquote,
q {
	quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {
	width: 100%;
	font-family: "Merriweather", sans-serif;
	color: #fff;
}

/* Custom property to transition opacity - for tile gradient transition */
@property --opacity {
	syntax: "<number>";
	initial-value: 1;
	inherits: false;
}

.section1 {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100vh;
	background-color: #000;
	padding: 0 3em 3em 3em;
}

.section2 {
	display: flex;
	flex-direction: column;
	color: #000;
	background-color: #fbfbfb;
	text-align: center;
	padding: 5em;
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

#header {
	font-size: clamp(70px, 7.5vw, 130px);
	font-weight: 700;
	letter-spacing: 1px;
	animation: fadeInLeft 3s;
	margin-bottom: 60px;
}

#subheader {
	font-size: clamp(40px, 3.5vw, 57px);
	line-height: clamp(53px, 5vw, 73px);
	font-weight: 900;
	animation: fadeInLeft 5s;
}

.pitch {
	font-size: clamp(2rem, 2vw, 3rem);
	margin: 0 auto;
	line-height: clamp(40px, 3vw, 60px);
	font-weight: 300;
	margin-bottom: 1.5em;
}

.section1 svg {
	position: absolute;
	bottom: 2rem;
	margin: auto;
	left: 0;
	right: 0;
	margin-inline: auto;
	width: fit-content;
}

.section1 a,
.section1 a:visited,
.section1 a:active {
	text-decoration: none;
	color: #fff;
	animation: bounce 2s infinite;
}

.domains {
	font-size: clamp(2.5rem, 2vw, 4rem);
	line-height: 1.7em;
	font-weight: 900;
}

.section2 a,
.section2 a:visited,
.section2 a:active {
	color: #000;
	text-decoration: none;
}

.section2 a:hover:not(.cta),
.section2 a:focus:not(.cta) {
	background-size: 100% 0.1em;
}

.domain-grid {
	display: grid;
	grid-column-gap: 40px;
	row-gap: 2rem;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	grid-template-rows: auto;
}

.domain {
	--initial: #e6e6e6;
	background-color: var(--initial);
	display: grid;
	align-content: center;
	min-height: 20vh;
}

.domain h2 {
	background: rgb(0, 153, 255);
	background: linear-gradient(to right, rgba(226, 66, 249, 0.94) 40%, rgb(0, 153, 255) 80%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: clamp(2rem, 1vw, 3.2rem);
	font-weight: 900;
	padding: 0.5rem;
	margin-bottom: 1.5rem;
}

.domain:hover,
.domain:hover h2 {
	background: unset;
	-webkit-background-clip: unset;
	-webkit-text-fill-color: unset;
}

.domain:hover {
	box-shadow: 5px 5px 10px rgba(154, 160, 185, 0.05), 0 15px 40px rgba(166, 173, 201, 0.1);
	color: #fff;
	background: conic-gradient(rgb(from var(--initial) r g b/var(--opacity)) 0 0), linear-gradient(40deg, rgba(226, 66, 249, 0.94) 40%, rgb(0, 153, 255) 80%);
	--opacity: 0;
	transition: --opacity 0.5s;
}

.domain .cta {
	font-size: clamp(1.5rem, 1.2vw, 2.5rem);
	font-weight: 300;
	display: flex;
	justify-content: center;
	font-style: italic;
}

.domain svg,
.domain:active svg {
	padding-left: 0.6rem;
}

footer {
	color: #000;
	font-size: clamp(0.9rem, 0.5vw, 1.1rem);
	font-weight: 300;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 2em;
}

footer svg {
	font-size: clamp(0.7rem, 0.5vw, 0.9rem);
	margin-right: 0.3rem;
}

@media (max-width: 300px) {
	.section2 {
		padding: 2em 1em;
	}

	.domain-grid {
		grid-template-columns: auto;
	}
}

@media (min-width: 301px) and (max-width: 767px) {
	#header {
		animation: fadeInLeft 2.5s;
	}

	#subheader {
		animation: fadeInLeft 3s;
	}

	.section2 {
		padding: 2em 1em;
	}
}

@media (min-width: 1000px) {
	.container {
		width: 50%;
	}
	.pitch {
		width: 70%;
	}
}
