@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");

* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

body {
	background-color: hsl(212, 45%, 89%);
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	font-family: "Outfit", sans-serif;
	font-optical-sizing: auto;
}

h1 {
	font-size: 22px;
	font-weight: 700;
	line-height: 120%;
}

p {
	font-size: 15px;
	letter-spacing: 0.2px;
	list-style: 140%;
}

main {
	display: flex;
	flex-direction: column;
	row-gap: 1rem;
	background-color: hsl(0, 0%, 100%);
	max-width: 320px;
	max-height: 499px;
	padding: 16px 16px 40px;
	border-radius: 20px;
	text-align: center;
}

#image img {
	width: 100%;
	border-radius: 10px;
}

#info {
	padding: 0px 16px;
}

#info h1 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 16px;
}

.attribution {
	font-size: 11px;
	text-align: center;
	margin-top: 10px;
}
.attribution a {
	color: hsl(228, 45%, 44%);
}
