body{
    background-color: white;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin-left: 1%;
}
h1{
    text-align: center;
}
.notfound, .container, #quotes, #homepage, #photos, #about, #lineage-content {
    flex:1;
}
.home-button{
    width: 20px;
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}

#lineage > h1 {
    margin-left: 5%;
}

.quote-title{
    text-align: center;
}
.quote{
    text-align: center;
    word-wrap: break-word;
    font-size: x-large;
}

#quotes > h1{
    text-align: center;
}    

#about{
    margin-left: 5%;
    margin-right: 5%;
}
.footer {
    bottom: 0px; 
    left: 0px; 
    padding: 50px 0;
    background-color: #ffd700;
    text-align: center;
}

.navbar {
    margin-bottom: 10px;
  }
  
  .navbar ul {
      list-style-type: none;
      margin: 0;
      padding: 0;
      overflow: hidden;
      background-color: #e67e00;
  }
  
  .navbar li {
    float: left;
    margin-bottom: 0;
  }
  
  .navbar li a {
      display: block;
      color: white;
      text-align: center;
      padding: 14px 16px;
      text-decoration: none;
  }
  
  .navbar li a:hover {
      color: black;
      background-color: #ffd700;
  }


  .navbar li .active { font-weight: bold; }

.homehero{
    background-color: transparent;
}
.shadow
{
    display:block;
    position:relative;
}
.shadow:before
{
    display:block;
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    -moz-box-shadow:inset 0px 0px 63px 63px rgba(255,255,255,1);
    -webkit-box-shadow:inset 0px 0px 63px 63px rgba(255,255,255,1);
    box-shadow:inset 0px 0px 63px 63px rgba(255,255,255,1);
}

.title{
    text-align: center;
}

.main-photo{
    margin-left: auto;
    margin-right: auto;
    display: block;
    background: radial-gradient(farthest-side,#ffd700, transparent) center no-repeat;
    animation:pulse 2s linear infinite alternate;
}

@keyframes pulse{
    from {
      background-size:50%;
    }
    to {
      background-size:105%;
    }
  }

/* Larger than tablet screen */
@media (min-width: 80.0rem) { 
    .main-photo{
        height: 500px;
        width: auto;
    }
 }

/* Larger than desktop screen */
@media (min-width: 120.0rem) { 
    .main-photo{
        height: 500px;
        width: auto;
    }
}

.lightbox {
    /* Default to hidden */
    display: none;
  
    /* Overlay entire screen */
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    
    /* A bit of padding around image */
    padding: 1em;
  
    /* Translucent background */
    background: rgba(0, 0, 0, 0.8);
  }
  
  /* Unhide the lightbox when it's the target */
  .lightbox:target {
    display: block;
  }
  
  .lightbox span {
    /* Full width and height */
    display: block;
    width: 100%;
    height: 100%;
  
    /* Size and position background image */
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }