
body, html {
	height: 100vh;
	margin: 0;
	font-family: 'Saira', serif;
	font-size: 26px;
	color: rgba(249,249,249,1)
}

#background {
	background-image: url("klp-background.jpg");
	height: 100VH;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

#container {
	background-color: rgba(38,38,38,0.6);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	display: flex;
	justify-content: center;
	align-items: center;
}

.content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 40%;
}

.image {
	width: 100%;
	margin: 20px 0;
}

.info {
	box-sizing: border-box;
	padding: 10px 20px;
	width: 100%;
	background-color: rgba(38,38,38,1);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.item {
	display: flex;
	flex-wrap: wrap; 
	align-items: center;
	justify-content: center;
	padding: 5px 10px;
}

a {
    text-decoration: none;
	color: rgba(249,249,249,1)
}

@media only screen and (min-width: 0px) {
	.content {
		width: 90%;
		font-size: 16px;
	}
}

@media only screen and (min-width: 576px) {
	.content {
		width: 80%;
		font-size: 16px;
	}
}

@media only screen and (min-width: 768px) {
	.content {
		width: 70%;
		font-size: 18px;
	}
}

@media only screen and (min-width: 992px) {
	.content {
		width: 60%;
		font-size: 20px;
	}
}

@media only screen and (min-width: 1200px) {
	.content {
		width: 50%;
		font-size: 22px;
	}
}

@media only screen and (min-width: 1400px) {
	.content {
		width: 40%;
		font-size: 24px;
	}
}

@media only screen and (min-width: 2000px) {
	.content {
		width: 40%;
		font-size: 26px;
	}
}


