/* Reset Rule */

* { margin: 0; padding: 0; box-sizing: border-box; }

 body {
    background-color: rgb(243, 243, 243);
    color:rgb(0, 0, 0);
    font-family: "Fira Sans", sans-serif;
    font-size: 15px;
    margin: auto;
    position: relative;
    height: 100vh;
    max-height: 100vh;
    line-height: 1.5;
}

Header {

      background-color: rgb(0, 0, 0);
      color: rgb(255, 255, 255);
      text-align: center;
      padding: 15px;
      border: 8px solid green;
      position: relative;
    }

Header > H1 {

    font-size: 40px;
    font-weight:bold;
}

nav {
    
    text-align: center;
    padding-bottom: 20px;
    align-items: center;
    display: block;
    
}

nav a {
     color: rgb(23, 88, 7); text-decoration:dotted; padding: 4px 3px; } nav a:hover { background-color: #7a7a7a; color: #1a6917;
    }



p  {
    padding-top: 30px;
    
}

H2 {
    padding-top: 20px;
}

img {
    
    border-radius: 10%; box-shadow: -4px 4px 8px #013902; max-width: 100%; height: 100%;
}

.section_history {

  grid-template-areas: "stack";
    display: grid;
    max-height: 100vh;
    margin: auto;
    max-width: 100%;

}

.history1 {
     text-align: center;
    justify-content: center;
    align-items: center;
    margin: auto;
    object-fit: cover;
    float: right;
}

.history2 {
    text-align: center;
    justify-content: center;
    align-items: center;
    margin: auto;
    object-fit: cover;
    float: left;
}

.history_img1 {
    border-radius: 5%; box-shadow: 4px 4px 8px #013902; max-width: 100%; height: 100%;
    margin-right: 10px;
    height:350px;
    width: 450px;
    margin-bottom: 20px;
    float: left;

}

.history_img2 {
    border-radius: 5%; box-shadow: -4px 4px 8px #013902; max-width: 100%; height: 100%;
    margin-right: 10px;
    margin-left: 10px;
    height:350px;
    width: 450px;
    margin-bottom: 20px;
    float: right;
}




.center {
  display: block;
  margin-top: 8px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  width: 20%;
  height: auto;
}

footer {
      background-color: rgb(0, 0, 0);
      color: white;
      text-align: center;
      font-size: 10px;
      padding: 15px;
      border-top: 4px solid #3A8242;
      bottom: 0;
      width: 100%;
    }

