@media screen and (min-width:601px) {
	h1 {
		font-family: Montserrat, Arial, sans-serif;
		color: #d534eb;
		font-size: 50px;
		text-align: center;
	}
}

@media screen and (max-width:600px) {
	h1 {
		font-family: Montserrat, Arial, sans-serif;
		color: #d534eb;
		font-size: 30px;
		text-align: center;
	}
}

h2 {
	font-family: Montserrat, Arial, sans-serif;
	font-size: 17px;
	text-align: center;
}

h4 {
	font-family: Montserrat, Arial, sans-serif;
	color: #170303;
	font-size: 20px;
	font-weight: bold;
	text-align: left;
	padding: 5px;
	margin: 5px;
}

/* The navigation menu */
.navbar {
	overflow: hidden;
	background-color: #d534eb;
	border-radius: 10px;
}

/* Navigation links */
.navbar a {
	float: left;
	font-size: 12px;
	color: black;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
	font-family: Montserrat, Arial, sans-serif;
}

.header {
	position: relative;
	display: inline-block;
	width: 100%;
}

.header img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 10px;
}

@media screen and (min-width:601px) {
	
	.welcomeText {
		background-color: none;
		width: auto;
		border: none;
		padding: none;
		margin: 20px 190px 20px 190px;
		font-family: Montserrat, Arial, sans-serif;
		text-align: center;
		font-size: 16px;
	}
}

@media screen and (max-width:600px) {
	
	.welcomeText {
		background-color: none;
		width: auto;
		border: none;
		padding: none;
		margin: 20px 20px 20px 20px;
		font-family: Montserrat, Arial, sans-serif;
		text-align: justify;
		font-size: 12px;
	}
}

@media screen and (min-width:601px) {
	.programLayout {
		display: flex;
		flex-direction: row;
		column-gap: 20px;
		flex-wrap: nowrap;
		justify-content: space-between;
		align-items: flex-start;
	}
}

@media screen and (max-width:600px) {
	.programLayout {
		display: flex;
		flex-direction: column;
		column-gap: 20px;
		flex-wrap: nowrap;
		justify-content: space-between;
		align-items: flex-start;
	}
}

.programWelcome {
	align-items: center;
}

section.programLayout {
	justify-content: center;
}

.programArticleImage {
	width: 300px;
	border-radius: 10px;
}

@media screen and (min-width:601px) {
	.programBox {
		background-color: none;
		width: auto;
		border: none;
		padding: none;
		margin: 20px 90px 20px 90px;
	}
}

@media screen and (max-width:600px) {
	.programBox {
		background-color: none;
		width: auto;
		border: none;
		padding: none;
		margin: 20px 20px 20px 20px;
	}
}

#event-schedule h2 {
    	text-align: center;
    	font-size: 1.8em;
    	margin-bottom: 20px;
	color: #d534eb;
}

#event-schedule table {
    	font-family: Montserrat, Arial, sans-serif;
    	font-size: 1em;
}

#event-schedule th, #event-schedule td {
    	padding: 10px;
    	border: 1px solid #ccc;
}

#event-schedule tr:nth-child(even) {
    	background-color: #f9f9f9;
}