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

:root {
	--white: hsl(0, 0%, 100%);
	--light-gray: hsl(212, 45%, 89%);
	--grayish-blue: hsl(220, 15%, 55%);
	--dark-blue: hsl(218, 44%, 22%);
}

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

body {
	background-color: var(--light-gray);
	font-family: "Outfit", sans-serif;
	font-size: 15px;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

a {
	text-decoration: none;
	color: var(--dark-blue);
	font-weight: 700;
}

a:hover {
	color: #2c7dfa;
}

.card {
	background-color: var(--white);
	max-width: 275px;
	margin-bottom: 100px;
	border-radius: 20px;
	padding: 15px;
}

.container {
	text-align: center;
}

.container > * {
	margin-bottom: 15px;
}

img {
	width: 100%;
	border-radius: 15px;
}

h1 {
	color: var(--dark-blue);
	line-height: 1.3;
	display: inline-block;
	font-size: 20px;
	font-weight: 700;
}

p {
	line-height: 1.3;
	color: var(--grayish-blue);
}
