html,
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body {
	background: url("/assets/images/front/background.jpg");
	width: 100%;
	height: 100vh;
	object-fit: cover;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	overflow: hidden;
	font-family: Arial, Helvetica, sans-serif;
}
body::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	background-color: rgba(255, 255, 255, 0.7);
	width: 100%;
	height: 100vh;
	z-index: -1;
}

.bg {
	padding: 50px 20px;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	align-items: center;
	align-self: center;
	height: 100vh;
}

.logo img {
	width: 200px;
}

.content {
	text-transform: uppercase;
	text-align: center;
	font-size: 20px;
}

.btns {
	margin-top: 20px;
}

.btns a {
	display: flex;
}

.btns a {
	padding: 10px 30px;
	background-color: black;
	border-radius: 8px;
	color: white;
	text-decoration: none;
	font-size: 16px;
	border: 3px solid white;
	box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.3);
	transition: all 0.2s ease-in-out;
	display: inline-block;
}

.btns a:hover {
	background: white;
	color: black;
	border: 3px solid rgb(0, 0, 0);
	transform: translateY(-3px);
}

.social-media {
	display: flex;
}
.social-media a {
	display: inline-block;
	margin-right: 10px;
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	align-self: center;
	background: black;
	border-radius: 100%;
	color: white;
	text-decoration: none;
}

@media (max-width: 500px) {
	.btns a {
		display: block;
		margin-bottom: 10px;
	}
}
