body, thead, tbody {
		font-family: 'Arial';
		font-style: normal;
		font-size: large;
		color: Black;
		background-color: #C0C0C0;
}

body {
	display: flex;
	flex-direction: column;
}

h1 {
	font-family: 'Arial';
	font-style: normal;
	font-size: xx-large;
	color: Red;
	background-color: #C0C0C0;
	margin: 0px;
}

h3 {
	font-family: 'Arial';
	font-style: normal;
	font-size: x-large;
	color: Red;
	background-color: #C0C0C0;
	margin: 0px;
}

.grid-container {
	display: grid;
	grid-column-gap: 50px;
}

/* Remove the navbar's default margin-bottom and rounded borders */ 
.navbar {
	background-color: #555;
	color: Red;
	font-size: x-large;
	margin-bottom: 0;
	border-radius: 0;
}
	  
/* Set 100% height */
.sidenav {
	padding-top: 20px;
	background-color: #C0C0C0;
	height: 100%;
}
	  
/* On small screens, set height to 'auto' for sidenav and grid */
@media screen and (max-width: 768px) {
.sidenav {
	height: auto;
	padding: 15px;
}
.calgrid-container { 
	grid-template-columns: 1fr;
}
}

@media screen and (min-width: 769px) {
.calgrid-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 24px;
}
}  

.img {
	width: 100%;
}

/* Styling for Calender table*/
#table-kal {
	width: 50%;
	border-collapse: collapse;
	border: 1px solid black;
}

#table-kal td, 
#table-kal th {
	border: 1px solid black;
	padding: 0.5rem;
	text-align: left;
}

.sponsor {
	font-family: 'Arial';
	font-style: normal;
	font-size: xx-large;
	color: Black;
	background-color: #C0C0C0;
	margin: 10px;
	text-align: right;
}