/*##############################################################################################################
################################################################################################################
################################################################################################################
################################################################################################################
General Settings for the Webpages like:
1. Defining the font
2. Setting up the background image
3. Margin of the body
etc.
################################################################################################################
################################################################################################################
################################################################################################################
###############################################################################################################*/





/* #############################################################################################################
################################################################################################################
 Defining and using the font for the website.
 ###############################################################################################################
 ############################################################################################################### */
@font-face {
   font-family: chalkFont;
    src:url("font/Satisfy-Regular.ttf");
}

/* #############################################################################################################
################################################################################################################
General Properties of the HTML file, like setting a background image for the page, font etc.
################################################################################################################
################################################################################################################ */
html {
	background: url(img/blackbg.jpg) no-repeat center center fixed;
	box-sizing: border-box;
	/*font-family: "chalkFont";*/
	font-size: x-large;
	font-weight: lighter;
	scroll-behavior: smooth;
}

/* #############################################################################################################
################################################################################################################
General Properties of the body.
################################################################################################################
################################################################################################################ */
body {
	width: 100%
	background: none;
	margin: 1.2rem 10%;
	line-height: 1.4;
}

/* #############################################################################################################
################################################################################################################
Designing the body as grid. (.wrapper is the main div of the body.)
################################################################################################################
################################################################################################################ */
.wrapper {
	display: grid;
	grid-gap: 0.1rem;
}

/* #############################################################################################################
################################################################################################################
Header: Name, SRF and Department.
################################################################################################################
################################################################################################################ */
.header {
	max-height: 10rem;
	background-position: center;
	padding: 0.25rem;
	text-align: center;
	color: #fff;
	border-style: double;
	border-color: #fff;
	border-radius: 1rem;
	background-color: rgba(0, 0, 0, 0.5);
}

/*#############################################################################################################
###############################################################################################################
covid.html (HOME) > .about > .about(.dPic, .rand)
###############################################################################################################
##############################################################################################################*/
.covid{
	margin-top: 1rem;
	background-color: rgba(0, 0, 0, 0.5);
	border-style: double;
	border-color: #fff;
	border-radius: 1rem;
	color: #fff;
	display: grid;
	box-shadow: 0 1px 5px rgba(104, 104, 104, 0.8);
	padding: 2%;
	justify-content: center;
	align-items: center;
}

#googleSheet{
	scroll-behavior: smooth;
	overflow-y: none;
	justify-content: center;
	margin: auto;
}

.footer{
	text-align: right;
	font-size: small;
	font-weight: bolder;
	color: #fff;

}

a{
	color: #fff;
}


























/* Media Quaries */

@media(max-width: 1245px){
	.about {
		grid-template-columns: 1fr;
		padding: 2%;
		grid-template-areas: 
		'dPic'
		'rand';
	}

	.about img {
		max-width: 40%
	}

	.about .dPic {
		padding-left: 30%;
		padding-right: 30%;
	}

	.main-nav ul{
		display: grid;
		grid-template-columns: 1fr;
	}
}