html {
	font-size: 1em;	
	font-family: 'Inter Tight', sans-serif;
	color: blue;
}

body {
	background-color: white;
	display: flex;
	justify-content: center;
}

.container {
	background-color: red;
	display: flex;
	flex-direction: column;
	
	width: 90vw;
	height: auto;
}

.container > img {
	max-width: 90vw;
	height: auto;
	border-radius: 10px;
}

.container > h1 {
	font-size: 3rem;
	padding: 0px 0px 0px 10px;
}

.container > h3 {
	font-size: 2rem;
	padding: 0px 0px 0px 10px;
}

.container > ul {
	font-size: 2rem;
}


.container > ul > li{
	max-width: 70vw;
	padding: 0px 0px 10px 10px;
}

