#container {
	display: flex;
	flex-direction: column;
	text-align: center;
}

#container-xl {
	height: 13rem;
}

#content {
	display: flex;
	flex-direction: column;
	position: relative;
	align-items: center;
	text-align: center;
	background-color: rgb(245, 245, 245, 0.6);
	font-weight: 400;
	font-size: 1.75rem;
	gap: 0.5rem;
	padding: 5rem 1rem 0;
}

#img-container-xl {
	display: none;
}

#img-container {
	position: absolute;
	top: -4em;
	margin: 0 auto;
	width: 50%;
	max-width: 10rem;
	height: auto;
}

img.logo {
	box-shadow: 15px 16px 25px rgba(0, 0, 0, 0.5);
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 25px;
}

ul.socials {
	display: flex;
	flex-direction: row;
	gap: 1.5rem;
	margin: 1.38rem 0 1.38rem;
}

.btn {
	display: inline-block;
	background-color: white;
	padding: 10px 0;
	cursor: pointer;
	max-width: 27rem;
	min-width: 17rem;
	width: 90%;
	max-height: 5rem;
	height: 3rem;
	border-radius: 10px;
	border: 1px solid rgba(0, 0, 0, 0.5);
	margin: 0.75rem 0;
	transition: transform 0.2s ease-out 0.1s;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 1rem;
}

.btn:hover {
	transform: scale(101%);
	box-shadow: 2px 1px 20px rgba(0, 0, 0, 0.2);
	background-color: #6551fe;
	color: white;
}

.btn-group {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-wrap: nowrap;
}

/* RESPONSIVE TABLET */
@media screen and (min-width: 768px) {
	.bg-container {
		background-color: rgb(245, 245, 245, 0.9);
	}

	#wrapper {
		display: flex;
		flex-direction: row;
		min-height: 100vh;
		height: 100%;
	}

	#container {
		justify-content: center;
		height: auto;
	}

	#container,
	#container-xl {
		width: 50%;
		padding: 1rem 1.75rem;
	}

	#container-xl {
		height: auto;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	#img-container {
		display: none;
	}

	#content {
		padding: 0 1.75rem;
		background-color: initial;
		position: initial;
	}

	#img-container-xl {
		display: flex;
		position: relative;
		margin: 0 3rem;
		width: 90%;
		max-width: 25rem;
		height: auto;
		max-height: 25rem;
	}

	#header {
		position: initial;
	}
}
