html,body{
	margin: 0;
	padding: 0;
}

body{
	font-family: "Plus Jakarta Sans", serif;
	background: #070709;
	color: white;
}

header{
	height: 3rem;
	padding-bottom: 5rem;
	padding-top: 2rem;
}

header img{
	width: 7rem;
	height: auto;
}

footer{
	position: fixed;
	bottom: 1rem;
	left: 0;
	right: 0;
	opacity: .5;
}

footer a{
	color: white;
}

h1{
	font-size: 3.5rem;
	margin-bottom: 2rem;
	font-weight: 600;
	line-height: 1.15;
}

p{
	font-size: 1.5rem;
	font-weight: 300;
	margin-bottom: 3rem;
	color: #8B8B8B;
}

.button{
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #ffffff;
	color: black;
	border-radius: .5rem;
	height: 3.5rem;
	padding: 0 2rem;
	font-size: 1.2rem;
	font-weight: 500;
}

.main{
	text-align: center;
	padding-bottom: 2rem;
	padding-left: 2rem;
	padding-right: 2rem;
}

@media screen and (max-width: 768px){
	header{
		padding-bottom: 2rem;
	}
	footer{
		padding-top: 5rem;
		position: static;
	}
	h1{
		font-size: 2.1rem;
	}
	p{
		font-size: 1.2rem;
		font-weight: 300;
		margin-bottom: 3rem;
		color: #8B8B8B;
	}

}