/* MrBrit CSS */


/* Gallery start */
div.gallery {
  border: 1px solid #ccc;
  }
  
div.gallery:hover {
    border: 1px solid #777;
  }
  
div.gallery img {
    width: 100%;
    height: auto;
  }
  
div.desc {
    padding: 15px;
    text-align: center;
  }
  
* {
    box-sizing: border-box;
  }
  
.responsive {
    padding: 40px 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;
  }

 /* Gallery End */ 
 
/* Grid Header End */ 

 .wrapper {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(4, [col] 100px ) ;
  grid-template-rows: repeat(3, [row] auto  );
  background-color: #fff;
  color: #444;
}

.box {
  background-color: #444;
  color: #fff;
  border-radius: 5px;
  padding: 20px;
  font-size: 150%;

}

.a {
  grid-column: col / span 2;
  grid-row: row ;
}
.b {
  grid-column: col 3 / span 2 ;
  grid-row: row ;
}
.c {
  grid-column: col ;
  grid-row: row 2 ;
}
.d {
  grid-column: col 2 / span 3 ;
  grid-row: row 2 ;
}

.e {
  grid-column: col / span 4;
  grid-row: row 3;
}
/* Grid Header End */ 

/* Grid Start Menu */
body {
  margin: 20px;
  font-family: Garamond, serif;
}

.menu_box {
  background-color: rgb(240, 240, 223);
  color: #fff;
  border-radius: 3px;
  padding: 10px;
  font-size: 150%;
  font-family: Garamond, serif;  
  font-weight: normal;
  text-align: center;
}

.menu_box:nth-child(even) {
  background-color: rgb(162, 20, 209);
  color: #000;
}
  
.menu_grid {
    display: grid;
    border:1px solid #000;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(150px,1fr));
  }

/* Grid Menu End */

/* Links Start*/

/* unvisited link */
a:link {
  color: blue;
}

/* visited link */
a:visited {
  color: black;
}

/* mouse over link */
a:hover {
  color: hotpink;
}

/* selected link */
a:active {
  color: blue;
}
/* Links End */

.c_img {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .c_img1 {
    display: block;
    margin: auto;
  }
  .center {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
  .text_c {
   text-align: center;
  }
  
 /* used start */

  .t1 {
    border-collapse: collapse;
    border: 5px solid black;
    background-color: none;
  }
 /* used end */ 

  td {
    text-align: center;
    vertical-align: middle;
  }
  
  #cssTable td {
  text-align: center;
  vertical-align: middle;
  }

  .body1 {
    font-family: Garamond, serif;
    font-size: 72px;
  }
  .body2 {
    font-family: Garamond, serif;
    font-size: 24px;
    color:rgb(221, 26, 205);
  }

/* background-color: #216132; 
background-color: #69b57d;
*/

  body {
  background-color: #3e657a;
  font-family: "Lato", sans-serif;
  }

/* side navigation */

  .sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
  }

  .sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
  }

  .sidenav a:hover {
  color: #f1f1f1;
  }

  .sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
  }

@media screen and (max-height: 450px) {
.sidenav {padding-top: 15px;}
.sidenav a {font-size: 18px;}
}