@import url("https://use.typekit.net/lsa2pys.css");
/* NORMALIZE / SETUP */
:root {
	/* DEFAULT FONT */
	font-family: elza, sans-serif;
	font-weight: 400;
	font-style: normal;
	box-sizing: border-box;
	
	--primary: rgb(63, 105, 232);
}
html { overscroll-behavior: none;}
.hidden { opacity: 0 !important; visibility: hidden !important; }
body {
	margin: 0;
	box-sizing: border-box;
	background-color: rgb(200, 255, 247);
	color: var(--primary);
	
	padding: 30px;
}
* {text-decoration: none !important; box-sizing: border-box;}


h1 {
	font-family: moret, serif;
	font-weight: 700;
	font-style: normal;
	
	font-size: 9em;
	line-height: 0.8;
	
	margin-top: 30px;
}

p {
	font-size: 2em;
}

#bottom {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	
	margin-top: 100px;
	margin-bottom: 50px;
	
	font-size: 2em;
}

#offers p {
	font-weight: 700;
	line-height: 1;
	margin: 0;
}

a {
	padding: 30px 60px;
	
	border: 25px solid var(--primary);
	color: var(--primary);
	
	font-weight: 700;
	font-size: 2.25em;
	text-align: center;
	
	box-sizing: border-box;
	height: min-content;
	
	transition: all 0.15s ease-in-out; 
}
a:hover {
	background-color: var(--primary);
	color: white;
}
li {
	margin-top: 10px;
}
.indent {
	margin-left: 80px;
}
.no-indent {
	list-style: none;
}


@media screen and (max-width: 800px) {
	#bottom {
		flex-direction: column;
		justify-content: center;
		width: 100%;
	}
	h1 {
		font-size: 6em;
	}
	a {
		margin-top: 30px;
	}
	.indent {
		margin-left: 40px;
	}
}








