*{
  margin: 0;
  padding: 0;
  font-family: sans-serif

}
.Navbar {
  /* This give the navbar the color,padding aka thicknes and overflow aka only shows whats in the padding or box if hidden */
  background-color: #30BCED;
  overflow: hidden;
  padding: 5px 5px;
  
}

.Navbar a{
  /*  */
  float: left;
  color: black;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-size: 18px;
  line-height: 25px;
  border-radius: 4px;

}

.Navbar a:hover {
  /* Change the background color on mouse-over */
  background-color: #ddd;
  color: black;
}

.Navbar a.active {
  /* Style the active/current link*/
  background-color: dodgerblue;
  color: white;
}


.Navbar a.CovidLogo{
  /* Make font bigger of logo and thicker with the weight */
  font-size: 25px;
  font-weight: bold;
}

.NavbarRight{
  /* Take Home,Help,Countries and About Covid 19 and make it start from the right or flow form the right side */
  float : right;
}

body {
    /* background-image: url(./background_img/website-background.jpg) */
    background-color: #FFFFFA;
    
}

.MainHeading {
  /* The Main title of the website in the index page */
  text-align: center;
  padding: 10px;
  color: black;
}

.Cases{
  text-align: left;
}

.Passing{
  text-align: center;
}




.footer {

  text-align: center;
  padding: 20px 20px;
  color: #FFFFFA;
  background-color: black;
}

