body {
	margin: 0;
}

.container {
	display: flex;
}

.image {
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
}

.text-container {
	display: flex;
	justify-content: center;
}

.section-text {
	width: fit-content;
	height: fit-content;
	text-transform: uppercase;
	font-family: Arial;
	background: rgba(250, 250, 250, 0.5);
	padding: 0 20px;
}

.section a {
	color: #000;
	text-decoration: none;
}

.section:hover {
	opacity: 0.5;
}

/* mobile and tablet */
@media screen and (max-width: 768px) {
	.container {
		flex-direction: column;
		height: 100vh;
	}

	.section {
		height: 25vh;
	}

	.image {
		background-position: center;
	}

	.logoContainer {
		display: none;
	}

	.logo {
		height: 150px;
		width: 150px;
	}

	.section-text {
		margin-top: calc(-13vh);
		font-size: 27px;
		font-weight: bold;
	}
}

/* desktop */
@media screen and (min-width: 769px) {
	.container {
		flex-direction: row;
		flex-wrap: wrap;
	}

	.section {
		width: 50vw;
		height: 50vh;
		flex-basis: 50%;
	}

	.logoContainer {
		display: flex;
		justify-content: center;
		height: 100%;
	}

	.logo {
		height: 200px;
		width: 200px;
		object-fit: contain;
		padding-top: calc(20vh - 80px);
	}

	.section-text {
		text-align: center;
		margin-top: -75px;
		font-size: 35px;
		font-weight: 800;
		background: rgba(250, 250, 250, 0.5);

	}
}

@media screen and (min-width: 200px) and (max-width: 450px) {
	.section-text {
		font-size: 23px;
	}
}

@media screen and (min-width: 769px) and (max-width: 950px) {
	.section-text {
		font-size: 25px;
	}

	.logo {
		height: 150px;
		width: 150px;
	}
}
