@font-face{
	font-family:'Outfit'
} 
html {
  scroll-behavior: smooth;
	/* scroll-snap-type: y mandatory; */
}
h1, h2, h3, h4, p, a {
	font-family: 'Outfit';
}
h1, h3, p { font-weight: 400; }
a {	
	font-weight: 600;
	text-decoration: none; 
	color: #FFF;
}
p {
	margin: 0 0 16px 0;
}
body, h1, h3 { margin: 0; }
body{
	padding:0;
	width:100%;
	height:100%;
	overflow-x: hidden;
	color: #FFF;
}
.wrapper {
	display: flex;
	flex-direction: column;
	margin:0;
	width: 100vw;
	height: 100%;
	min-height: 100vh;
	box-sizing: border-box;
	background-image: linear-gradient(135deg, #19343C, #04222A);
	background-attachment:fixed;
}
.content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width:80%;
	margin: 128px auto;
	box-sizing: border-box;
	gap: 8px;
}
section {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: calc(100vh - 256px);
}
.logo {
	width:83px;
	height:51px;
	background-repeat:no-repeat;
	background-image:url(../images/logo.svg);
	background-size:100%;
	background-position:center;
}

/* PHONE __________________________________________________________________________________________ */
@media only screen and (max-width: 768px) {
	.site_content {
		margin: 144px 0 24px;
		max-width: 100vw;
	}
	h1 { font-size: 48px; }
	h3 { font-size: 18px; }
	p {
		font-size: 18px;
		line-height: 36px;
	}
}

/* TABLET __________________________________________________________________________________________ */
@media only screen and (min-width: 769px) {
	.site_content {
		margin: 0 0 48px;
		max-width: 100%;
		width: 100%;
		padding: 0;
		box-sizing: border-box;
		overflow-x: hidden;
	}
	h1 { font-size: 64px; }
	h3 { font-size: 18px; }
	p {
		font-size: 18px;
		line-height: 36px;
	}
}

/* DESKTOP __________________________________________________________________________________________ */
@media only screen and (min-width: 993px) {
	.site_content{
		margin: 0 0 48px;
		padding: 0 50px;
		overflow-x: visible;
	}
	h1 { font-size: 72px; }
	h3 { font-size: 24px; }
	p {
		font-size: 14px;
		line-height: 24px;
	}
}