body {
	background-color: #008D00;
}

h1 {
	font-size: 3em;
	margin-bottom: 5px;
}

.logo {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

.links {
	display: flex;
	flex-direction: row;
	justify-content: center;
	margin-bottom: 30px;
}

.button {
	margin-left: 20px;
	margin-right: 20px;
	padding: 10px;
	text-decoration:none;
	color: black;
	background-color: rgba(169,169,169, 0.4);
	border-radius: 5px;
}

.button:hover {
	background-color: rgba(169,169,169, 0.7);
	border-radius: 5px;
}

.button > div {
	font-size: 1.1rem;
}

.button > div > img {
	height: 1rem;
}

.main-carousel {
	overflow: hidden;
}

.carousel-div {
	margin-right: 100px;
}

.content-left > h2 {
	text-align: center;
}

.content-summary {
	text-align: center;
	margin-bottom: 30px;
}

.carousel-img {
	height: 300px;
}

@media only screen 
and (max-width : 420px) {
	.content-box {
		display: flex;
		flex-direction: column; 
		margin-left: 5vw;
		margin-right: 5vw;
	}

	.content-right {
		padding: 20px;
	}

	.logo > img {
		width: 80vw;
	}
}

@media only screen 
and (min-width : 421px) {
	.content-box {
		display: flex;
		flex-direction: row; 
		margin-left: 20vw;
		margin-right: 20vw;
	}

	.reverse {
		flex-direction: row-reverse;
	}

	.content-left {
		width: 60%;
	}

	.content-right {
		width: 40%;
		padding: 20px;
	}

	.logo > img {
		width: 50vw;
	}
}