@font-face{
    font-family: "Hack-Regular";
    src: url("fonts/hack-regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}
*{
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif ;
    color: rgb(92, 92, 92);
}

html, body{
    margin: 0;
    padding: 0;
    height:100%
}
html{
    background-color:#fab61722;
}
.nav ul{
    margin: 0;

}

.nav li{
    display: inline;
}

.nav a{
    display: inline-block;
    padding:  .5em;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
}
.about_me_header{
    text-align: center;
}
.main-nav{
    text-align: center;
    font-size: 1.1em;
    font-weight: lighter;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.main-nav li{
    padding: 0 2.5%;
}

.nav a:hover{
    background-color: rgba(255, 255, 255, 0.3);
}
.mainHeader{
    background-color: rgba(0, 0, 0, 0.6);
    background-image: url(images/headerBackground.jpg);
    background-blend-mode: multiply;
    background-size: cover;
    padding-bottom: 30px;
   
}

.banner_message{
    margin: 0;
    font-size: 1.5em;
    font-family: "Hack-Regular";
    color: rgba(255, 255, 255, 0.75);
    font-weight: normal;
}

.big_message{
    padding-top: 30px;
    text-align: center;
    font-size: 4em;
}

.little_message{
    text-align: right ;
}
.content-section{
    margin: 1em;
    padding-bottom: 150px;
}
.container{
    max-width: 1000px;
    margin: 0 auto;
    
}
.main-footer{
    background-color: #fab617;
    color: white;
    padding: .25em 0; 
    bottom: 0;
    position: fixed;
    width: 100%; 
     
}
.footer_message{
    color: #e30613;
    font-size: 1.5em;
}

.main-footer-container{
    display: flex;
    align-items: center;
    
}

.main-footer-container ul{
    flex-grow: 1;
    text-align: end;
    padding: 0;
    margin: 0;
}
.icon_credit{
    text-align: end;
    color: black;
    font-size: 0.5em;
    padding-top: 0;
}
.footer-nav li{
    padding: 0;
}
.footer-nav a{
    padding:0;
}
.footer-nav img{
    width: 50px;
    height: 50px;
    padding: 0;
}
.about_me_img{
    float: left;
    height: auto;
    width: 200px;
    /* margin: 10px; */
    margin-right: 10px;
    border-radius: 30%;
}
.left_img{
    float: left;
    height: auto;
    width: 200px;
    margin: 10px;
}
/* .gallery_image{
    width: 300px;
    height: auto;

} */

.gallery {
    /* Prevent vertical gaps */
    line-height: 0;
     
    -webkit-column-count: 5;
    -webkit-column-gap:   0px;
    -moz-column-count:    5;
    -moz-column-gap:      0px;
    column-count:         5;
    column-gap:           0px;  
  }
  
.gallery img {
    /* Just in case there are inline attributes */
    width: 100% !important;
    height: auto !important;
  }

  .lcolumn {
    float: left;
    width: 15%;
  }
  
  .rcolumn {
    float: left;
    width: 85%;
  }
  .innerleft
  {
      float: left;
      width: 33%;
  }
  .innermid
  {
      float: left;
      width: 33%;
  }
  .innerright
  {
      float: left;
      width: 33%;
  }
  .verticalLine {
    border-left: thick solid #ff0000;
  }

  /* Clear floats after the columns */
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  .rightJust
  {
      float: right;
  }