* {
	box-sizing: border-box;
	margin: 0;
}

body {
	margin: 0;
	font-size: 62.5%;
	display: flex;
	flex-direction: column;
	background-color: var(--background-color);
}

.main-screen {
	display: flex;
	flex-direction: column;
	width: 90%;
	margin: 0 auto;
	margin-top: 10em;
	margin-bottom: 10em;
}

.video-wrapper {
	width: 100%;
	height: 220px;
}

.video {
	width: 100%;
	height: 100%;
}

.game-description {
	padding-top: 4em;
	color: white;
	position: relative;
}

.desc-title {
	width: fit-content;
	display: flex;
	flex-direction: column;
	margin: 0 auto;
}

.desc-title h2 {
	font-size: 2.5em;
}

.game-description p {
	font-size: 1.6em;
	width: 90%;
	line-height: 1.5em;
	margin: 1em auto;
}

.game-description-border {
	border-bottom: 2px solid var(--primary);
	width: 80%;
	align-self: center;
}

.main-screen-buttons button:hover {
	background-color: rgb(228, 170, 62);
	color: black;
	transition: 0.5s;
}

.features {
	display: flex;
	flex-direction: column;
}

section {
	position: relative;
	display: flex;
	width: 95%;
	justify-self: center;
	margin: 0 auto;
}

.feature {
	margin: 3em auto;
	height: auto;
}

.features-image {
	width: 100%;
}

.image-holder {
	margin: auto;
	padding: 5%;
}

.feature h1 {
	font-family: 'Bitter', sans-serif;
	letter-spacing: 1.5px;
	font-weight: bold;
	font-weight: 400;
	font-size: 2.3em;
	color: white;
	text-align: center;
}

.features-title {
	width: fit-content;
	display: flex;
	flex-direction: column;
	margin: auto;
}

.border {
	border-bottom: 2px solid var(--primary);
	width: 80%;
	align-self: center;
	margin-top: 0.2em;
}

.features h2 {
	font-size: 2.5em;
	color: var(--primary);
	text-align: center;
	margin-top: 0.5em;
}

h2 {
	font-family: 'Bitter',serif;
	letter-spacing: 1.5px;
	font-size: 2em;
	width: 100%;
	font-weight: 400;
}

p {
	font-family: 'Montserrat', sans-serif;
}

.features p {
	font-size: 1.7em;
	color: white;
	line-height: 1.5em;
	padding-left: 2em;
	padding-right: 2em;
	width: fit-content;
}

.feature-desc {
	display: none;
}

.feature-desc p {
	margin-top: 1em;
}

.slider-arrow-left {
	position: absolute;
	align-self: center;
	left: 1%;
	margin: auto 0;
	font-size: 3.5em;
	color: var(--primary);
	transform: rotate(180deg);
	z-index: 1;
}

.slider-arrow-right {
	position: absolute;
	align-self: center;
	right: 1%;
	margin: auto 0;
	font-size: 3.5em;
	color: var(--primary);
	z-index: 1;
}

.fa-angle-right:hover {
	color: white;
	transition: 0.3s;
	cursor: pointer;
}

.active {
	display: block;
	animation-name: slider;
	animation-duration: 1s;
}

.active-desc {
	display: block;
	animation-name: slider;
	animation-duration: 1s;
}

@keyframes slider {
	0% {
		opacity: 0%;
	}
	100% {
		opacity: 100%;
	}
}

@media screen and (min-width: 530px) {
	.video-wrapper {
		height: 300px;
	}
}

@media screen and (min-width: 640px) {
	.video-wrapper {
		height: 400px;
	}
}

@media screen and (min-width: 750px) {
	.features {
		flex-direction: row;
		height: auto;
	}

	.features:nth-child(odd) {
		flex-direction: row-reverse;
	}

	.features-image {
		/* border: solid 1px var(--primary); */
		width: 100%;
	}
	
	.image-holder {
		width: 50%;
		padding: 0 2.5%;
		max-height: 40em;
	}

	section {
		padding: 0 2.5%;
		width: 50%;
		margin: auto;
	}
}

@media screen and (min-width: 762px) {
	section {
		width: 50%;
	}
}

@media screen and (min-width: 950px) {
	.main-screen {
		flex-direction: row;
		width: 95%;
	}

	.game-description {
		width: 50%;
		margin-left: 2.5%;
	}

	.video-wrapper {
		margin: auto;
		width: 50%;
		margin-right: 2.5%;
		height: 300px;
	}

	.right-section {
		right: 0;
		padding-right: 6%;
	}

	.left-section {
		padding-left: 6%;
	}
}

@media screen and (min-width: 1200px) {

	.video-wrapper {
		width: 600px;
		height: 350px;
	}

	.features {
		margin-bottom: 10em;
	}
}