body {
  background-color: gray;
  font-family: "Hind", sans-serif;
  font-weight: 400;
  font-style: normal;


}


p {
  text-indent: 5em;
  padding-left: 12.5%;
  padding-right: 12.5%; font-size: 1.2em; 
  line-height: 1.75;
  margin : 0; 
  padding-top:0;
}



/* -- Footer -- */
.footer {
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #333;
  color: white;
  text-align: center;
}

/* -- Links -- */
 a:link {
  color: white;
}
 
 a:visited {
  color: white;
}

a:hover {
  color: lightblue;
}

/* -- Navigation Bar -- */

.topnav {
  overflow: hidden;
  background-color: #333;
}

.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav .active {
  background-color: black;
  color: white;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}


/* -- Collapsable Menu -- */
.collapsible {
  background-color: black;
  color: white;
  cursor: pointer;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}


/* Style the collapsible content. Note: hidden by default */
.content {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  background-color: #333;
}


