
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@800&display=swap');


html, body, section {
	height: 100%;
    background-color: black;
}
body {
	color: #fff;
	text-align: center;
}
div {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.xop-container {
	display: flex;
}
div {
	flex-direction: column;
	justify-content: center;
}
 
.xop-left {
	background: linear-gradient(rgba(180, 180, 180, 0.85), rgba(0, 0, 0, 0.7)), url(img/carlvbg.jpg);

	background-size: cover;
	background-position: center;
	flex: 1;
	padding: 1rem;
	transition: all .2s ease-in-out;
  text-transform: uppercase;
 
}
 
.xop-right {
	background: linear-gradient(rgba(10, 211, 231, 0.7), rgba(10, 211, 231, 0.7)), url(img/alphalinebg.jpg);

	background-size: cover;
	background-position: center;
	flex: 1;
	padding: 1rem;
	transition: all .2s ease-in-out;
  text-transform: uppercase;

}
.xop-left:hover, .xop-right:hover {
	transform: scale(0.95);
    filter: hue-rotate(-10deg);
  
}
.xop-container p {
	letter-spacing: 1px;
  font-family: 'Open-Sans', sans-serif;
	font-size: 2rem;
}
.xop-button {
	border-radius: 2px;
	color: #fff;
	background-color: #333;
	padding: 10px 6px;
	margin: 0 1%;
	text-align: center;
  font-family: 'Open-Sans', sans-serif;
	text-decoration: none;
  letter-spacing: 1px;
	display: inline-block;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.5s;
	width: 150px;
}
 
.xop-button:hover {
	background: #fff;
	color: #333;
}

@media only screen and (max-width: 600px) {
  .xop-container {
    flex-direction: column;
  }
  
  .xop-container p {
	letter-spacing: 0px;
  font-family: 'Open-Sans', sans-serif;
	font-size: 15px;
}

.xop-container img {
	height: 50px;
	width: 120px;
}

}