/* Set height of body and the document to 100% to enable "full page tabs" */
body, html {
    height: 250%;
    margin: 0;
    font-family: Arial;
  }
  
  /* Style tab links */
  .tablink {
    background-color: #555;
    color: white;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    font-size: 17px;
    width: 25%;
  }
  
  .tablink:hover {
    background-color: #777;
  }
  
  /* Style the tab content (and add height:100% for full page content) */
  .tabcontent {
    color: rgb(216, 168, 168);
    
    display: none;
    padding: 150px 30px;
    height: 100%;
  }
  .tabcontent h1 {
    color: white;
  }
  
  #Home {background-color: rgb(5, 70, 43);}
  #News {background-color: rgb(107, 4, 4);}
  #Contact {background-color: rgb(95, 95, 236);}
  #About {background-color: rgb(240, 184, 81);}




 
  div.gallery {
    border: 1px solid #ccc;
  }
  
  div.gallery:hover {
    border: 1px solid #777;
  }
  
  div.gallery img {
    width: 318px;
    height: 350PX;
  }
  
  div.desc {
    padding: 100px;
    text-align: center;
  }
  
  * {
    box-sizing: border-box;
  }
  
  .responsive {
    padding: 0 6px;
    float: left;
    width: 24.99999%;
    
  }
  
  @media only screen and (max-width: 700px) {
    .responsive {
      width: 49.99999%;
      margin: 6px 0;
    }
  }
  
  @media only screen and (max-width: 500px) {
    .responsive {
      width: 100%;
    }
  }
  
  .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }