@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;800&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@600&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400&display=swap");

body {
	text-size-adjust: none;
	background-color: #ECE6DC;
	margin: 0;
	
	font-family: Roboto;
	font-weight: 400;
}

h1, h2 {
	font-family: Outfit;
	font-weight: 800;
}

h3 {
	font-family: "Josefin Sans";
	font-weight: 600;
}

p {
	margin: 0;
}

.darkerEmphasis {
	background-color: #DCD6CC;
}

.lighterEmphasis {
	background-color: #FCF7ED;
}

@media (min-width: 1101px) {
	hr {
		margin: 1vw 0;
	}
	
	:root {
	  --bigCornerRadius: 1.5vw;
	  --smallCornerRadius: 0.75vw;
	}
}

@media (max-width: 1100px) {
	hr {
		margin: 2vw 0;
	}
	
	:root {
	  --bigCornerRadius: 2.5vw;
	  --smallCornerRadius: 1.5vw;
	}
}