.background-image{
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position:relative;
}

#background-1{
  min-height:100vh;
  background-image: url("../images/forging.jpg");
  background-position: center 0.5em;
}

#background-2{
  background-image: url("../images/impala.jpg");
}

#background-3{
  background-image: url("../images/grinding.jpg");
}

#background-4{
  background-image: url("../images/bushbuck.jpg");
  background-position:center;
}

#background-2, #background-3, #background-4{
  min-height:55vh;
}

#logo-container{
  text-align:center;
}

#logo-description{
  display:inline-grid;
  grid-template-columns:minmax(auto,61ch) auto;
  grid-template-rows:auto auto;
  grid-gap:10px;
  text-align:left;
}

#logo-upright{
  height:2em;
  margin-top:auto;
  margin-bottom:auto;
}

#logo-side{
  width:2em;
  margin-top:auto;
  margin-bottom:auto;
}

#caption-container{
  position:absolute;
  top:40%;
  width:100%;
  z-index: 1;
  text-align:center;
}

#caption{
  color:white;
  background-color: black;
  font-size: 2em;
  padding:15px;
  border-radius: 3px;
}

.section{
  background-color:black;
  padding:40px;
  color:white;
}

.section h2{
  text-align: center;
  padding:10px;
  color:inherit;
  font-family: inherit;
}

.section p,a{
  line-height: 1.8em;
  color:inherit;
  font-family: inherit;
}

.section a{
  text-decoration:underline;
}

@media screen and (max-aspect-ratio:131/119){
  #background-1{
    min-height:60vh;
    background-position: center;
  }

  #background-2, #background-3, #background-4{
    min-height:40vh;
  }

  #caption{
    font-size:1.5em;
    padding:10px;
  }
}

@media screen and (hover:none){
  .background-image{
    background-attachment:scroll;
    background-position:center;
  }
}


@media screen and (min-aspect-ratio:10/7){
  #background-2, #background-3, #background-4{
    min-height:80vh;
  }
}

