body {
    background: url(../web_images/bg.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 100vh;
    width: 100vw;
    padding: 0px;
    margin: 0px;
}
header{
	margin: 0px;
	background-color: lightskyblue;
}
footer{
	background-color: rgb(50,50,50); 
	position: fixed; 
	bottom: 0vh; 
	height: 5vh; 
	width: 100vw;
}
footer a {
	color: white;	
}
#centerImage{
	height: 100px;
	width: 100px;
}
.Options_Grid{
	display: grid;
  	grid-template-columns: repeat(4, 1fr); 
  	grid-gap: 20px;;
}
.card{
  	color: rgb(32, 73, 23);
	background-color: white;
  	Padding: 20px;
  	margin: 20px;
  	box-shadow: 4px 4px 4px #888888;
}
.logoutBut{
	background-color: #32a4ef;
	color: white;
	border: none;
	margin-top: 25px;
	margin-right: 25px; 
	height: 50px;
	width: 120px;
	float: right;
}
.outer{
	margin-top: 10vh;
	text-align: center;
    height: 80%;
    width: 100%;
}
.paragraph-center{
	padding: 20px 0 30px 40px;
	margin: 0 auto;
	text-align: center;
	color: #146b9d;
	font-size: 11pt;
	font-weight: bold;
	font-family: Verdana;
}
input{
	font-size: 16px;
	margin-top: 10px;
	border-radius: 10px; 
	width: 80%;
	border: solid grey 1px;
}
@media (max-width: 900px){
  	.Options_Grid{
  		display: grid;
  		grid-template-columns: repeat(3, 1fr); 
  		grid-gap: 20px;;
  	}
}
@media (max-width: 700px){
  	.Options_Grid{
  		display: grid;
  		grid-template-columns: repeat(2, 1fr); 
  		grid-gap: 20px;;
  	}
}
@media (max-width: 500px){
  	.Options_Grid{
  		display: grid;
  		grid-template-columns: repeat(1, 1fr); 
  		grid-gap: 5px;;
  	}
}