@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400&display=swap');

body {
	font-family: 'Poppins', sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.bg-black {
	background-color: #000!important;
}

a {
	text-decoration: none;
}

.content p:not(:last-of-type):after {
	content: '';
	width: 200px;
	height: 1px;
	background-color: #fff;
	margin: 1.8rem auto;
	display: block;
}


.text-6xl {
	font-size: 120px;
}

@media screen and (max-width: 768px) {
	.text-6xl {
		font-size: 80px;
	}
}

@media screen and (max-width: 650px) {
	.text-6xl {
		font-size: 50px;
	}
}