html, body {
	height: 100%;
}

#wrapper {
	height: 100%;
}

#about {
	position: relative;
	height: 100%;
	text-align: center;
	cursor: move;
}

#about .language {
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 5vw;
}

#about .language h4 {
	font-family: Tactic;
	font-size: 3vh;
	color: white;
}

#about .language h4 span{
	color: red;
}

#about .language p {
	font-size: 5vh;
	margin-bottom: 20px;
}

#about .main-language {
	background: black;
}

#about .main-language p {
	color: white;
}

#about .secondary-language {
	background: #ffd302;
	z-index: 3;
}

#about .secondary-language {
	clip-path: circle(200px at 0 0);
}

#about .secondary-language p {
	color: black;
}

@media (max-width: 1000px) {
	#about .main-language {
		background: #ffd302;
	}

	#about .main-language p {
		color: black;
	}

	#about .secondary-language {
		display: none;
	}
}