* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
body {
	font-family: 'Outfit', sans-serif;
	background-color: hsl(212, 45%, 89%);
}
main {
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}
.box {
	padding: 1rem;
	width: 20%;
	border-radius: 10px;
	background-color: white;
	box-shadow: 0px 5px 20px 0px #00000036;
	text-align: center;
}
.code img {
	width: 100%;
	border-radius: 10px;
}
.description {
	padding: 10px 15px;
}
.description h4 {
	color: hsl(218, 44%, 22%);
	font-weight: 700;
}
.description p {
	font-size: 13px;
	font-weight: 400;
	color: hsl(220, 15%, 55%);
	padding-top: 10px;
}
@media (min-width: 375px) and (max-width: 1199px) {
	.box {
		width: 90%;
		box-shadow: none;
		padding: 20px 0;
	}
	.code img {
		width: 90%;
	}
	.description {
		padding: 15px;
	}
}
