/* Reset Rule */

* { margin: 0; padding: 0; box-sizing: border-box; }




body {
    background-color: rgb(255, 255, 255);
    color:rgb(0, 0, 0);
    font-family: "Rubik", sans-serif;
    font-size: 15px;
    display: block; 
    margin: auto;
    position: relative;
    height: 100vh;
    max-height: 100vh;
    line-height: 1.5;
   
}


Header {

      background-color: rgb(0, 0, 0);
      color: white;
      text-align: center;
      padding: 15px;
      height: auto;
      border: 4px solid #3A8242;
      position: relative;

    }

Header > H1 {

    font-size: 30px;
    font-weight:lighter;
}

nav {
    
    text-align: center;
    padding-bottom: 20px;
    align-items: center;
    display: block;
    
}

img {

    margin-left: 20px;
    border-radius: 10%; box-shadow: -4px 4px 8px #013902; max-width: 100%; height: 100%;
    float: right;
    
    margin-right: 10px;
    width:220px; 
    height:250px;
    display: flex;
    overflow: hidden;
    object-fit: cover;
}

.content_body {
    
    grid-template-areas: "stack";
    display: grid;
    max-height: 100vh;
    margin: auto;
    line-height: 1.5;
   
}

.content1 {
    text-align: center;
    justify-content: center;
   align-items: center;
   margin: auto;
   object-fit: cover;
}

.content2 {
 
    text-align: center;
    justify-content: center;
    align-items: center;
    margin: auto;
    object-fit: cover;
   
}

.hometown_img {
    border-radius: 5%; box-shadow: 4px 4px 8px #013902; max-width: 100%; height: 100%;
    margin-right: 10px;
    height:350px;
    width: 450px;
    margin-bottom: 20px;
    display: flex;
    float: left;

}

.hometown_img2 {
    border-radius: 5%; box-shadow: -4px 4px 8px #013902; max-width: 100%; height: 100%;
    margin-right: 10px;
    height:350px;
    width: 450px;
    margin-bottom: 20px;
    display: flex;
    float: right;
}

a {
 text-decoration: none;
 
}

nav a {
     color: rgb(2, 63, 15);} nav a:hover { background-color: #c2c4c3; color: #0821ff;
     text-decoration: none;
    }

.nav_main {
 text-align: left;
}

p  {
    padding: 8px; 
    text-align: left;
}


H2 {
    padding-top: 20px;
     text-align: left;
}

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%;
      position: absolute;
      
    }



