html,
body {
	min-height: 100vh;
	text-rendering: optimizeLegibility;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-webkit-tap-highlight-color: transparent;
}
body {
	margin: 0px;
	background-color: #ffffff;
	font-family: Roboto, Arial, sans-serif;
	font-size: 1rem;
	line-height: 1.5rem;
	letter-spacing: 0.02rem;
	color: #ffffff;
}
a,
a:hover,
a:focus {
	color: #ffffff;
	text-decoration: none;
	transition: color 0.3s ease-out;
}
svg {
	vertical-align: middle;
	width: 1.5rem;
	height: 1.5rem;
	fill: currentColor;
	transition: fill 0.3s ease-out;
}
#wrap {
	box-sizing: border-box;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	border-top: 0.5rem solid #181d21;
}
.main {
	padding: 2rem;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: url(../images/bg.png) no-repeat center bottom;
	background-size: cover;
}
.main .logo {
	max-width: 20rem;
	filter: drop-shadow(0px 0px 0.25rem rgba(0, 0, 0, 0.2)) drop-shadow(0px 0.25rem 1rem rgba(0, 0, 0, 0.4));
}
.main .menu {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-top: 3rem;
	position: relative;
	z-index: 10;
}
.main .menu a {
	color: rgba(255, 255, 255, 0.75);
	background-color: #181d21;
	padding: 1rem;
	width: 11rem;
	height: 10rem;
	border-radius: 0.75rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 1;
	overflow: hidden;
	font-size: 0.875rem;
	text-transform: uppercase;
	transition: color 0.3s ease-out, transform 0.3s ease-out, box-shadow 0.3s ease-out;
	box-sizing: border-box;
	will-change: auto;
	transform: translate3d(0px, 0px, 0px);
	box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.04), 0px 4px 13px rgba(0, 0, 0, 0.08);
}
.main .menu a:first-child {
	grid-column: 1 / 3;
	width: 100%;
	height: 6rem;
}
.main .menu a:first-child svg:first-of-type {
	position: absolute;
	width: 2.5rem;
	height: 2.5rem;
	left: 1.25rem;
	bottom: 1.5rem;
	margin: 0;
	transform: rotate(25deg);
}
.main .menu a:first-child svg:last-of-type {
	position: absolute;
	width: 2.5rem;
	height: 2.5rem;
	right: 1.25rem;
	top: 1.5rem;
	margin: 0;
	transform: rotate(-25deg);
}
.main .menu a:first-child strong {
	background: -webkit-linear-gradient(259deg, #ff8d50, #fe5b6b);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: 1.25rem;
	margin-top: 0.5rem;
	display: inline-block;
}
.main .menu a small {
	font-size: 85%;
	color: rgba(255, 255, 255, 0.4);
	margin-bottom: -0.25rem;
	display: block;
}
.main .menu a:hover {
	color: #ffffff;
	transform: scale(1.06) translate3d(0px, 0px, 0px);
	box-shadow: 0px 6px 11px rgba(0, 0, 0, 0.17), 0px 17px 55px rgba(0, 0, 0, 0.34);
}
.main .menu a:active {
	color: rgba(255, 255, 255, 0.4);
	transform: scale(0.9) translate3d(0px, 0px, 0px);
}
.main .menu a svg {
	margin-bottom: 1rem;
	width: 4rem;
	height: 4rem;
}
.footer {
	background-color: #181d21;
	font-size: 85%;
	display: flex;
	padding: 0.5rem 2rem;
	align-items: center;
	justify-content: space-between;
}
.footer .copyright span {
	color: rgba(255, 255, 255, 0.4);
	margin-right: 0.5rem;
}
.footer .social {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	margin-left: 2rem;
}
.footer .social a {
	display: flex;
	align-items: center;
	color: rgba(255, 255, 255, 0.8);
}
.footer .social a:hover {
	color: #ffffff;
}
.footer .social a + a {
	margin-left: 1rem;
}
.footer .social svg {
	margin-right: 0.25rem;
	fill: rgba(255, 255, 255, 0.4);
}
.footer .social a span {
	position: relative;
}
.footer .social a span::after {
	content: "";
	position: absolute;
	left: 0px;
	bottom: 0px;
	width: 0px;
	height: 2px;
	background-color: #ffffff;
	transition: width 0.3s ease-out;
}
.footer .social a.facebook span::after {
	background-color: #3b5998;
}
.footer .social a.instagram span::after {
	background-color: #e1306c;
}
.footer .social a:hover span::after,
.footer .social a:active span::after {
	width: 100%;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2),
	only screen and (min--moz-device-pixel-ratio: 2),
	only screen and (-o-min-device-pixel-ratio: 2/1),
	only screen and (min-device-pixel-ratio: 2),
	only screen and (min-resolution: 192dpi),
	only screen and (min-resolution: 2dppx) {
	.main {
		background: url(../images/bg@2x.png) no-repeat center bottom;
		background-size: cover;
	}
}
@media screen and (min-width: 1600px) {
	html {
		font-size: 1vmax;
	}
}
@media screen and (min-width: 320px) and (max-width: 647px) {
	.footer {
		flex-direction: column;
		text-align: center;
		padding: 1.5rem 2rem;
	}
	.footer .social {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		margin: 1.5rem 0px 0px 0px;
	}
	.footer .social a + a {
		margin-left: 0px;
	}
	.footer .social a {
		padding: 0.5rem;
	}
}
@media screen and (min-width: 320px) and (max-width: 424px) {
	.main .menu {
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 100%;
	}
	.main .menu a,
	.main .menu a:first-child {
		width: 100%;
		max-width: 18rem;
		height: 5rem;
		text-align: left;
		flex-direction: row;
		justify-content: flex-start;
	}
	.main .menu a:first-child {
		text-align: center;
		justify-content: center;
	}
	.main .menu a:first-child strong {
		font-size: 1rem;
		margin-top: 0.25rem;
	}
	.main .menu a:first-child svg:first-of-type,
	.main .menu a:first-child svg:last-of-type {
		width: 2rem;
		height: 2rem;
	}
	.main .menu a svg {
		margin: 0px 1rem 0px 0px;
		width: 2.75rem;
		height: 2.75rem;
	}
}
