main {
	height: calc(100vh - 60px);
	margin: 60px 60px 100px;
	display: flex;
	flex-direction: column;
}

h1 {
	color: #EC008C;
	margin-top: 20px;
	margin-bottom: 20px;
}

h2 {
	color: #000000;
	line-height: 0;
	margin: 20px 0;
}

h4 {
	font-family: Roboto, sans-serif;
	font-weight: 600;
	font-size: 24px;
	color: #000000;
	line-height: 0;
	margin: 20px 0 15px;
}

p2 {
	font-family: Roboto, sans-serif;
	font-size: 18px;
	font-weight: bold;
}

.workshop hr {
	border: none; /* Remove default border */
	border-top: 1px solid #ccc; /* Add a custom top border for the line */
	margin: 0; /* Add vertical spacing */
	width: 768px; /* Set a specific width */
}

.camp-hr hr {
	border: none; /* Remove default border */
	border-top: 2px solid #ccc; /* Add a custom top border for the line */
	margin: 15px 0 10px; /* Add vertical spacing */
	width: 500px; /* Set a specific width */
}

hr {
	border: none; /* Remove default border */
	border-top: 2px solid #ccc; /* Add a custom top border for the line */
	margin: 15px 0 10px; /* Add vertical spacing */
	width: 500px; /* Set a specific width */
}

.workshop {
	width: 100%;
	height: 60px;
	display: flex;
	flex-direction: column;
}

.workshop-title {
	display: flex;
	flex-direction: column;
	width: 100%;
	margin-bottom: 10px;
}

.workshop-title h4 {
	margin: 40px 0 15px;
}

.workshop-stars {
	width: 768px;
	height: 100px;
	display: flex;
	justify-content: space-between;
}

.workshop-stars-1 {
	align-content: center;
}

.workshop-stars-2 {
	align-content: center;
	text-align: end;
	width: 200px;
	flex-grow: 1;
	margin-right: 80px;
}

.workshop-stars-3 {
	align-content: center;
	width: 100px;

}

.junior, .rising, .elite, .camp {
	display: flex;
	justify-content: space-between;
	width: 100%;
	height: 50px;
}

.junior, .rising, .elite p{
	font-size: 16px;
	line-height: 50px;
}

.junior p2{
	font-size: 16px;
	line-height: 50px;
	color: #EC008C;
}

.rising p2{
	font-size: 16px;
	line-height: 50px;
	color: #9D4DBB;
}

.elite p2{
	font-size: 16px;
	line-height: 50px;
	color: #F3AF19;
}

.junior a {
	font-size: 16px;
	line-height: 16px;
	display: block;
	background-color: #EC008C;
	padding: 5px 20px;
	color: #FFFFFF;
	font-weight: 900;
	width: fit-content;
	border-radius: 20px;
	transition: all ease-in-out 200ms;
	margin: 10px auto 10px;
}

.junior a:hover {
	background-color: #000000;
	color: #EC008C;
}

.rising a {
	font-size: 16px;
	line-height: 16px;
	display: block;
	background-color: #9D4DBB;
	padding: 5px 20px;
	color: #FFFFFF;
	font-weight: 900;
	width: fit-content;
	border-radius: 20px;
	transition: all ease-in-out 200ms;
	margin: 10px auto 10px;
}

.rising a:hover {
	background-color: #000000;
	color: #9D4DBB;
}

.elite a {
	font-size: 16px;
	line-height: 16px;
	display: block;
	background-color: #F3AF19;
	padding: 5px 20px;
	color: #FFFFFF;
	font-weight: 900;
	width: fit-content;
	border-radius: 20px;
	transition: all ease-in-out 200ms;
	margin: 10px auto 10px;
}

.elite a:hover {
	background-color: #000000;
	color: #F3AF19;
}

.camp-week {
	align-content: center;
}

.camp-dates {
	align-content: center;
	text-align: end;
	width: 200px;
	flex-grow: 1;
	margin-right: 80px;
}

.camp-register {
	align-content: center;
	width: 100px;

}

.camp p2{
	font-size: 16px;
	line-height: 50px;
	color: #00B3FF;
}

.camp a {
	font-size: 16px;
	line-height: 16px;
	display: block;
	background-color: #00B3FF;
	padding: 5px 20px;
	color: #FFFFFF;
	font-weight: 900;
	width: fit-content;
	border-radius: 20px;
	transition: all ease-in-out 200ms;
	margin: 10px auto 10px;
}

.camp a:hover {
	background-color: #000000;
	color: #00B3FF;
}


.footer-sitemap {
	display: none;
}

/* MOBILE VERSION*/

@media only screen and (max-width: 768px) {
	
	main {
		height: calc(100vh - 50px);
		margin-top: 50px;
		margin-left: 30px;
		margin-right: 30px;

	}
	
	h4 {
		text-align: left;
		margin-top: 20px;
	}
	
	.workshop hr {
		width: 100%; /* Set a specific width */
	}

	hr {
		width: 90%; /* Set a specific width */
		margin-bottom: 5px;
	}
	
	.workshop-stars {
		width: 100%;
	}
	
	.workshop-stars-2 {
		display: none;
	}
	
	.workshop-stars-2 p {
		font-size: 12px;
	}
	
	.camp-dates {
		align-content: center;
		text-align: end;
		width: 150px;
		flex-grow: 1;
		margin-right: 10px;
		display: none;
	}
	
	.camp-dates p {
		font-size: 12px;
	}

	
}