:root{
	--white: #fff;
	--blue: rgb(0,75,137);
}

body{
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--white);
	background: var(--blue);
	font-size: 16px;
	font-family: Archivo;
	font-weight: 400;
}

#container{

	padding: clamp(1.5rem, 3vw, 2.5rem);
	border: 2px solid var(--white);
	border-radius: .5rem;
	width: fit-content;
	text-align: center;
}

h1, h2{
	line-height: 1;
	margin: 0;
}

h1{
	font-size: clamp(3rem, 8vw, 10rem);
	font-weight: 700;
	font-style: italic;
}

h2{
	font-size: clamp(1.5rem, 4vw, 5rem);
	font-weight: 400;
	margin-bottom: -.2em;
}