* {
	font-family: arial;
}



.hero {
	background-image: url("/assets/hero.gif");
	width: 100%;
	margin-top: 50px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	
}

.hero-content {
	display: grid;
	grid-template-columns: 1fr;
	place-items: center;
	gap: 75px;
}

#heading {
	font-size: 38px;
	color: white;
	text-align: center;
}

#subtitle {
	font-size: 28px;
	color: white;
	text-align: center;
	background-color: black;
	opacity: 0.75;
	padding: 25px;
	border-radius: 25px;

}

.hero-text button {
	padding: 12px 16px;
	font-size: 28px;
	margin-bottom: 100px;
	border-radius: 10px;
	cursor: pointer;
	background-color: rgb(231,26,26);
    color: white;
    border: 2px solid black;
    border-radius: 10px;
}

.hero-text button a {
	color: white;
	text-decoration: none;;
}

.spacer {
	width: 100%;
	height: 50px;
}

.important h1 {
	text-align: center;
	font-size: 38px;
	
}

.important-info {
	display: grid;
	grid-template-columns: 1fr;
	place-items: center;
	gap: 20px;
	font-size: 30px;
}

.important-img img {
	border-radius: 25px;
}

.important-button button {
	font-size: 24px;
	padding: 12px 16px;
	width: 100%;
	cursor: pointer;
}

.events {
	margin-top: 50px;
	text-align: center;
}

.events h1 {
	margin-bottom: 100px;
	font-size: 32px;
}

.events-content {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}


#event-img {
	border-radius: 50px;
	width: 700px;
	height:	600px;
}


.arrows {
	background-color: black;
	border-radius: 25px;
	padding: 10px;
	cursor: pointer;
}

@media (max-width: 768px) {
	#event-img {
		max-width: 60%;
		max-height: auto;
	}

	#subtitle {
		width: 80%;
	}

}