* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    background-color: #707070;
  }

  .home {
    height: 100vh;
    position:relative;
  }
  
  .home img {
    object-fit: cover;
    position:absolute;
    height: 100%;
    width: 100%;
    z-index: 1;
  }
   
  .overlay {
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    z-index:2;
    background: rgba(0,0,0,0.3);
  }
  
  .home-content {
    width:90%;
    margin: 0 auto;
    position:relative;
    color: #fff;
    z-index: 3;
  }
  
  .home-content h1 {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: 8rem;
    font-weight: 900;
    letter-spacing: .6rem;
    padding-top: 150px;
    margin-top: 0;
  }
  
  .home-content h3 {
    text-align:center;
    font-weight: 100;
    opacity:.8;
    font-size: 3rem;
  }
  
   .home-content h4 {
    text-align:center;
    font-weight: 100;
    opacity:.8;
    font-size: 2rem;
  }
  
   .home-content a {
    color: cornsilk;
    text-decoration: none;
  }