@import url("https://fonts.googleapis.com/css2?family=Parkinsans:wght@300..800&display=swap");

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Parkinsans, sans-serif;
	font-size: 10px;
	color: rgba(0, 0, 0, 0.7);
}

body {
	background-color: #ecf0f1;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
}

.container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	place-content: center;
	align-items: center;
	flex-direction: column;
	background-color: white;
	max-width: 980px;
	padding: 10px 30px;
	min-height: 60vh;
	border-radius: 15px;
	margin: 0 20px;
}

.redirect-header {
	font-size: 4rem;
}

.redirect-paragraph {
	font-size: 1.7rem;
	margin: 10px 0 20px 0;

	span {
		font-size: 1.7rem;
		font-weight: bolder;
	}
}

.img-section {
	justify-self: flex-end;

	img {
		width: 300px;
	}
}

.text-section {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center
}

body a {
	font-size: 1.7rem;
	background: #e74c3c;
	color: white;
	text-decoration: none;
	padding: 10px 20px;
	border-radius: 10px;
	display: inline-block;
}

@media screen and (max-width:600px) {
	.container {
		grid-template-columns: 1fr;
	}
	.img-section {
		justify-self: center;
		margin: 10px 0;
	}
}