:root {
	--black: #333;
	--white: #fff;
	--white-40: #f2f2f2;
	--red: #c93339;
}

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

html,
body {
	height: 100%;
}

body {
	font-family: 'Montserrat', sans-serif;
	background-color: var(--white-40);
	display: grid;
	place-items: center;
	text-align: center;
	padding: 2rem;
}

.placeholder-content img {
	max-width: 220px;
	margin-bottom: 2rem;
}

.placeholder-content p {
	color: var(--black);
	font-size: 1.25rem;
	font-weight: 500;
	margin-bottom: 2.5rem;
	max-width: 40ch;
}

.btn {
	display: inline-block;
	background: none;
	color: var(--red);
	font-weight: 500;
	border-radius: 3px;
	border: 2px solid var(--red);
	padding: 12px 25px;
	text-decoration: none;
	text-transform: uppercase;
	transition: all 0.25s ease-in-out;
}
.btn:hover,
.btn:focus {
	background: var(--red);
	color: var(--white);
}
