@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
	margin: 0px;
	padding: 0px;
	list-style:none;
	text-decoration:none;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
}
html {
	box-sizing: border-box;
}
*, *::before, *::after {
	box-sizing: inherit;
}
:root {
	--primary-color: #cddd1f;
}
h1, h2, h3 {
	font-size: 1.2em;
}

a {
	color: #dd1f6f;
}
body {
	background: #eaeaea;
	max-width: 100vw;
	overflow: hidden;
}
img {
	display: block;
	max-width: 100%;
}
/* 1.0 Header  */

.wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	background-color: #222;
	width: 100vw;
	height: 100vh;
	padding: 20px;
}
.wrapper h2 {
	color: var(--primary-color);
	font-weight: 800;
	font-size: 3rem;
	text-align: center;
}
.wrapper p {
	color: #f7f7f7;
	margin-top: 40px;
	font-weight: 300;
	font-size: 14px;
	text-align: center;
	line-height: 24px;
}

.meta-links ul {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	margin-top: 20px;
}
.meta-links ul a {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #ffffff;
	font-weight: 600;
}
.meta-links ul a span {
	text-decoration: underline;
}

@media screen and (min-width: 720px) {
	.wrapper h2 {
		font-size: 5rem;
	}
}