@charset "utf-8";

/* FONTS
--------------------------------------------------*/
@font-face {
	font-family: 'Ubuntu';
	font-weight: 400;
	font-style: normal;
	src: local('Ubuntu-Regular.ttf') format('ttf');
}
@font-face {
	font-family: 'Ubuntu';
	font-weight: 400;
	font-style: italic;
	src: local('Ubuntu-Italic.ttf') format('ttf');
}
@font-face {
	font-family: 'Ubuntu';
	font-weight: 700;
	font-style: normal;
	src: local('Ubuntu-Bold.ttf') format('ttf');
}
@font-face {
	font-family: 'Ubuntu';
	font-weight: 700;
	font-style: italic;
	src: local('Ubuntu-BoldItalic.ttf') format('ttf');
}


/* RESETS
--------------------------------------------------*/
*,
*:before,
*:after {
  box-sizing: border-box;
}
img, svg, iframe {
	display: block;
	height: auto;
	max-width: 100%;
}


/* STYLING
--------------------------------------------------*/
:root {
	--fnt-sans: "Ubuntu", Helvetica, Arial, sans-serif;
	--clr-primary: #000;
	--btn-offset: 15px;
	--btn-shadow: var(--clr-primary);
}
body {
	color: var(--clr-primary);
	background-color: #E6B8FF;
	min-height: 100vh;
	font-family: var(--fnt-sans);
	font-size: 1.2rem;
	line-height: 1.65;
	margin: 0;
	padding: 20px;
	display: flex;
	flex-flow: column nowrap;
	align-items: center;
}
a {
	color: currentColor;
}
.container {
	display: flex;
	flex-flow: column nowrap;
	justify-content: start; 
	align-items: center;
	flex: 1;
	width: 100%;
	max-width: 800px;
}
h1 {
	display: flex;
	text-transform: lowercase;
	letter-spacing: 0.03em;
	position: relative;
	justify-content: center;
	align-items: center;
	gap: 12px;
	margin-top: 1em;
	font-size: 2.65rem;
}
h1::before,
h1::after {
	display: inline-flex;
	content: '';
	width: 70px;
	height: 5px;
	margin-top: 6px;
	border-radius: 10% / 4px !important;
	background-color: currentColor;
}
.logo {
	max-width: 200px;
}
.logo img {
	height: 200px;
}
footer {
	display: flex;
	flex-flow: column;
	gap: 1rem;
	font-size: 1rem;
	opacity: 0.3;
	text-align: center;
	padding: 1em;
	transition: opacity 0.2s ease-in-out;
	font-weight: 700;
}
small {
	font-size: 12px;
}
footer:hover {
	opacity: 1;
}


/* SCOPING
--------------------------------------------------*/
.page-home .container {
	gap: 40px;
}
.page-home .button {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	cursor: pointer;
	width: clamp(200px, 90vw, 400px);
	height: clamp(100px, 90vw, 190px); 
	margin-left: calc( var(--btn-offset ) / 2 );
}
.page-home .button div {
	width: calc( 100% - var(--btn-offset));
	height: calc( 100% - var(--btn-offset));
	box-shadow: calc( 0px - var(--btn-offset) ) var(--btn-offset) 0 var(--btn-shadow);
	position: absolute;
	top: 0;
	right: 0;
}
.page-home .button:focus div,
.page-home .button:active div {
	top: var(--btn-offset);
	right: var(--btn-offset);
	--btn-shadow: transparent;
}
.page-home .button span {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}
.page-home .button img {
	width: 72%;
	height: 100%;
}

.page-home .button-finity span { background-color: #EE1A58; }
.page-home .button-finity:hover span { background-color: rgb(246, 48, 107); }
.page-home .button-dual span { background-color: #0084BF; }
.page-home .button-dual:hover span { background-color: #0492d4; }


.page-support p {
	text-align: center;
	font-size: 1.6rem;
}