@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&display=swap');

* {
	box-sizing: border-box;
}

html, body {
	height: 100%;
	padding: 0;
	margin: 0;
}

body {
	font-family: 'Fredoka One', sans-serif;
	font-size: 16px;
	line-height: 1.414;
	background-color: #e6497c;
	color: #fff;
	display: grid;
	grid-template-rows: auto 1fr;
}

header, main, footer, a {
	display: grid;
	justify-content: center;
	align-content: center;
}

main {
	padding: 0 16px;
}

section {
	max-width: 680px;
}

.inteklet {
	background-color: #2d5d0a;
}

.klet {
	background-color: #804818;
}

img {
	max-width: 100%;
	height: auto;
	border: 2px solid #fff;
	border-radius: 60px;
	margin-bottom: 24px;
}

h1, h2 {
	text-align: center;
}

h1 {
	font-size: 36px;
}

@media only screen and (min-width: 720px) {
	h1 {
		font-size: 72px;
	}
}

h2 {
	font-size: 48px;
	margin-top: 0;
}

a {
	color: #fff;
	font-size: 48px;
	text-decoration: none;
	border: 2px solid #fff;
	border-radius: 60px;
	min-width: 120px;
	min-height: 120px;
	padding: 8px;
	display: inline-grid;
}

.secondary {
	float: left;
	color: #ffadad;
}

.primary {
	float: right;
	color: #9eda5c;
}