*, *::before, *::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

root {
}

html {
	font-size: 16px;
}

body {
	height: 100vh;
	width: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #FBB4A5;
	font-family: system-ui, sans-serif;
}

main {
	height: 85vh;
	width: 45vw;
	background-color: #FB9EC655;
	border: 3px solid #FCFFC155;
	border-radius: 10px;
}

section {
	height: 85vh;
	width: 45vw;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	align-items: center;
	padding: 1.25rem 0;
}

p, li {
	padding: 0 3rem;
}

ul {
	list-style-type: none;
}

img {
	height: 100px;
	width: auto;
	border-radius: 10px;
}

figure {
	display: flex;
	flex-direction: column;
	align-items: center;
}

