* {
	box-sizing: border-box;
}

body, html {
	margin: 0;
	padding: 0;
	font-family: "Lato", sans-serif;
	color: #444;
	font-size: 18px;
}
h1, h2, h3, h4, h5, h6 {

	font-family: "Jaro", sans-serif;
	color: #e55209;
	font-weight: 400;
}
h1 {
	font-size: 45px;
}
#header {
	width: 100%;
	height: 56vw;
	position: relative;
	overflow: hidden;
}
#header img {
	position: absolute;
	width: 100%;
	height: auto;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 0;
}
#header h1 {
	position: absolute;
	top: 8%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	color: white;
	font-size: 10vw;
	font-weight: 100;
	white-space: nowrap;
	text-shadow: 0px 0px 50px rgba(0, 0, 0, 0.75);
}
#tag {
	width: 100%;
	height: auto;
	background-color: #e55209;
	color: white;
	text-align: center;
	padding-top: 50px;
	padding-bottom: 50px;
	margin-top: -15px;
}
#tag h1 {
	color: #fff;
}
#tag p {
	font-size: 20px;
	text-align: justify;
}
#tagInner {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}

#footer {
	text-align: center;
	padding: 50px;
	background-color: #444;
	color: #fff !important;
	font-family: 'Jaro', sans-serif;
	font-size: 35px;
}
section {
	width: 100%;
	padding: 0px;
	text-align: right;
}
section:nth-of-type(even) {
	background-color: #e9e9e9;
	text-align: left;
}
section p {
	text-align: justify;
}

.flex-container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding-top: 50px;
	padding-bottom: 50px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 50px;
}
.flex-container img {
	width: 100%;
	height: auto;
}
.flex-container .imgWrapper {
	width: 40%;
}
.flex-container .textWrapper {
	width: 60%;
}

.flex-container:nth-of-type(odd) {
	flex-direction: row-reverse;
}
#likes {
	display: flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
}
#likeButton, #dislikeButton {
	background: none;
	border: none;
	padding: 0px;
	margin-right: 5px;
	font-size: 20px;
	cursor: pointer;
}
#likeCount, #dislikeCount {
	font-weight: 700;
	padding-right: 15px;
}
#dislikeButton img {
	transform: scaleY(-1);
}
#likeButton:hover, #dislikeButton:hover {
	transform: scale(1.1);
}
@media screen and (max-width: 600px) {
	#header {
		width: 100%;
		height: 50vh;
	}
	#header img {
		height: 100%;
		width: auto;
	}
	#header h1 {
		font-size: 14vw;
	}
	#tag h1 {
		font-size: 40px;
	}
	#tag p {
		font-size: 16px;
	}
	.flex-container {
		flex-wrap: wrap;
		flex-direction: column;
		gap: 0px;
		padding-top: 5%;
		padding-bottom: 5%;
	}
	.flex-container h1 {
		font-size: 35px;
		text-align: center !important;
	}
	.flex-container p {
		font-size: 16px;
	}
	section:nth-last-of-type(odd) > .flex-container {
		flex-direction: column-reverse;
	}
	.flex-container .imgWrapper {
		width: 100%;
	}
	.flex-container .textWrapper {
		width: 100%;
	}
	
}