@import url("https://rsms.me/inter/inter-ui.css");

html {
	font-size: 62.5%;
}

html > * {
	margin: 0;
}

body {
	background-color: black;
	padding-right: 10vw;
	padding-left: 10vw;
	padding-top: 5vh;
	padding-bottom: 5vh;
	gap: 15vh;
	flex-direction: column;
	align-items: flex-start;
	display: flex;
    min-height: 90vh;
}

main {
	background-image: url("/images/background.jpeg");
	flex-grow: 1;
	background-position: center;
	background-repeat: no-repeat;
	background-size: clamp(16rem, 50%, 24rem);
    display: flex;
    align-items: center;
}

h1 {
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: clamp(4.4rem,-2.5rem + 12.5vw,8.2rem);
	line-height: 120%;
	color: white;
    margin: 0;
}

h2 {
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 700;
/*	font-size: clamp(1.6rem,0.25rem + 2.0833vw,2.0rem);*/
	font-size: 2.0rem;
	line-height: 120%;
	color: white;
    margin: 0;
}

p {
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 400;
/*	font-size: clamp(1.6rem,0.25rem + 2.0833vw,2.0rem);*/
	font-size: 2.0rem;
	line-height: 120%;
	color: white;
    margin: 0;
}

a {
	color: white;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

footer {

	display: flex;
    width: 100%;
	flex-direction: row;
	align-items: flex-start;
	padding: 0;
	gap: 3.2rem;
}

footer > div {
	display: flex;
    align-self: stretch;
    flex-direction: column;
	flex-grow: 1;
    gap: 1.6rem;
}

@media (max-width: 920px) {
/*	main {
		background-size: 300%;
		background-repeat: no-repeat;
	}
	h1 {
		font-size: 40px;
	}
	h2 {
		font-size: 16px;
	}
	p {
		font-size: 16px;
	}*/

	footer {
		flex-direction: column;
		gap: 2.4rem;
	}
	footer > div {
    	gap: .8rem;
	}
}

/*@media (max-width: 920px) {
	footer {
		flex-direction: column;
		gap: 24px;
	}
	footer > div {
    	gap: 8px;
	}
}*/

