/*

Table of contents:

 • GLOBALS
 • TYPOGRAPHY
 • GENERAL LAYOUT
 • RESPONSIVE

*/


/*GLOBALS*/

html, body {
	margin: 0;
	padding: 0;
}
body {
	font-family: 'Dongle', sans-serif;
	background-color: #FFFFFF;
	color: #000000;
	font-size: 24px;
	font-weight: 400;
}
* {
	outline: none;
}


/*TYPOGRAPHY*/

p {
	font-size: 1.5em;
	line-height: 1;
	margin: 0;
	padding: 0;
}
a {
	font-size: 1em;
	color: inherit;
	text-decoration: none;
	font-weight: 700;
}
strong {
	font-weight: 700;
}


/*GENERAL LAYOUT*/

section {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 100vh;
}
article {
	width: 80%;
	margin-top: 10%;
	max-width: 29em;
	row-gap: 1.5em;
	column-gap: 1.5em;
	display: flex;
	flex-direction: column;
}


.logo {
	width: 8em;
	height: auto;
}
@keyframes pupil-movement {
	0%    { transform: translate(0%, 0%); }
	15%    { transform: translate(0%, 0%); }
	20%   { transform: translate(3%, 0%); }
	25%   { transform: translate(3%, 0%); }
	30%   { transform: translate(-3%, 0%); }
	40%   { transform: translate(-3%, 0%); }
	45%   { transform: translate(0%, 0%); }
	55%   { transform: translate(0%, 0%); }
	60%   { transform: translate(0%, 4%); }
	65%   { transform: translate(0%, 4%); }
	70%   { transform: translate(0%, 0%); }
	80%   { transform: translate(0%, 0%); }
	85%   { transform: translate(0%, -4%); }
	90%   { transform: translate(0%, -4%); }
	95%   { transform: translate(0%, 0%); }
}
@keyframes eye-movement {
	13%    { transform: scaleY(1); }
	15%    { transform: scaleY(0.1); }
	17%    { transform: scaleY(1); }
	73%    { transform: scaleY(1); }
	75%    { transform: scaleY(0.1); }
	77%    { transform: scaleY(1); }
}
.logo .pupil {
	transform: translate(0%, 0%);
	animation: pupil-movement 5s infinite;
}
.logo .eye {
	transform-origin: 16% 16%;
	animation: eye-movement 5s infinite;
}
.buttons {
	display: flex;
	flex-direction: row;
	row-gap: 0.5em;
	column-gap: 0.5em;
}
.btn {
	display: flex;
	border-radius: 0.5em;
	border: 2px solid #000;
	line-height: 1;
	padding: 0.3em 0.6em 0.2em 0.6em;
	justify-content: center;
	box-sizing: border-box;
}
.btn.cta {
	background-color: #56E876;
	border-color: #56E876;
	color: #FFFFFF;
	text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1);
}


/*RESPONSIVE*/

@media only screen and (min-width: 1500px) {
	body {
		font-size: 28px;
	}
}
@media only screen and (min-width: 1800px) {
	body {
		font-size: 30px;
	}
}
@media only screen and (max-width: 800px) {
	body {
		font-size: 20px;
	}
	.buttons {
		flex-direction: column;
	}
}

