body {
  display:flex;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font: 15px/1.5 Arial, Helvetica,sans-serif;
  background: url(../img/dwpbg1.jpg) no-repeat center center fixed;
  background-size: cover;
  background-repeat: no-repeat;
  flex-direction: column;
}

.navbar {
  display: flex;
  height: 50px;
  width: 100%;
  background-color: #fc7575;
  font-family: Verdana, Geneva, Tahoma, sans-serif ;
  font-weight: bold;
  text-align: center;  
}
.navbar ul {
	list-style: none;
  margin: 0;
  padding: 0;  
}
.navbar ul li, a {
  display:block;
  width:90px;
  height:25px;
  float:left;
  text-decoration: none;
  color:black;
  padding: 6px;
}
.navbar ul li a:hover {
	background-color:rgb(196, 195, 195);
	color:#000000;
}
.navbar ul li a:active {
  position: relative;
  top: 1.5px;
  background-color:rgb(196, 195, 195);
	color:#000000;
}
.content {
  display:block;  
  width: 45%;
  padding:10px;
  margin:auto;
  background-color: #fff;  
  text-align: center;
}
.content1{
  display:block;  
  width: 25%;
  padding:10px;
  margin:auto;
  background-color: #fff;  
  text-align: center;

}

.footer {
  display: flex;  
  position: fixed;
  height: 25px;
  bottom: 0;
  width: 100%;
  background-color: #fc7575;
  color: #000000;
  justify-content:center;
  align-items:center;
}

  