* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

:root {
	--white-color: #f9f9f9;
	--bg-color: #e6e6e6;

	--box-shadow:
		0 16px 24px 2px rgba(33, 37, 41, .02),
		0 6px 30px 5px rgba(33, 37, 41, .04),
		0 8px 10px -5px rgba(33, 37, 41, .1);
}

body {
	background: var(--bg-color);
}

li {
	line-height: 1.5;
	padding: 5px 0;
}

.privacy, .terms {
	width: 70vw;
	display: flex;
	flex-direction: column;
	margin: 1.2em auto;
	padding: 3em;
}
.privacy, .terms, .wrapper {
	background-color: var(--white-color);
	box-shadow: var(--box-shadow);
	border-radius: 4px;
}

.privacy p,
.terms p {
	padding: 10px 0;
	text-align: justify;
}
.privacy h1,
.terms h1,
p.center {
	text-align: center;
}
.privacy h2,
.terms h2 {
	margin: 10px 0;
}
.privacy h3,
.terms h3 {
	margin: 5px 0;
}


.wrapper {
	width: 90%;
	margin: 25px auto;
	display: flex;
	flex-direction: column;
}
.wrapper h1 {
	align-items: flex-start;
	text-align: center;
	padding: 30px 0;
}
.container {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: row;
	margin: 30vh 0;
}
.container a {
	text-decoration: none;
	color: black;
	outline: none;
}
.container a:visited {
	color: black;
}

.block {
	width: 40vw;
	height: 15vh;
	margin: 0 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: none;
	background: #fff;
	border: 1px solid rgb(180, 199, 200);
	border-radius: 8px;
	text-align: center;
}
.block:hover {
	background: #f5f5f5;
	transition: .2s ease-in-out;
}

.nw {
	align-items: flex-end;
	text-align: center;
	padding: 30px 0;
}

@media (max-width: 992px) {
	.privacy, .terms {
		width: 85%;
	}
	.privacy p,
	.terms p {
		padding: 5px 0;
	}
	.privacy h2,
	.terms h2 {
		margin: 12px 0;
	}
	.center {
		margin-top: 20px;
	}
}