html {
  height: 100%;
}

body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  height: 100%;
  position: relative;
  background-image: url('images/rmnp-spring.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.masthead {
  position: relative;
  overflow: hidden;
  z-index: 2;
  display: flex;
  justify-content: center;
}
.masthead:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(195, 190, 190, 0.85);
}
.masthead .masthead-content {
  position: relative;
  max-width: 40rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
  padding: 5rem 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.masthead .masthead-content p {
  width: 81%;
  text-align: center;
  /* margin-left: 27%; */
}

.masthead .masthead-content .masthead-logo {
  width: 100%;
}
.masthead .masthead-content h1, .masthead .masthead-content .h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #353535;
}
.masthead .masthead-content p {
  font-size: 1.2rem;
  color: #353535;
  font-weight: 600;
}

@media (min-width: 768px) {
  .masthead {
    height: 100%;
    width: 65vw;
    min-height: 0;
    padding-bottom: 0;
  }
  .masthead:before {
    transform: skewX(-12deg);
    transform-origin: top right;
  }
  .masthead .masthead-content {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 2rem;
    padding-right: 9rem;
  }
  .masthead .masthead-content h1, .masthead .masthead-content .h1 {
    font-size: 2.5rem;
  }
  .masthead .masthead-content p {
    font-size: 1.3rem;
  }
}
@media (max-width: 767px) {
  .masthead{
    height: 100vh;
    opacity: 0.9;
  }
  .masthead:before {
    /* clip-path: polygon(0 100%, 0 0, 100% 100%); */
  }
  .masthead .masthead-content .masthead-logo {
    width: 80%;
    align-items: center;
  }
  .masthead .masthead-content p {
    width: 81%;
    /* align-items: center;
    justify-content: center; */
  }
  
}
@media (min-width: 1200px) {
  .masthead {
    width: 65vw;
  }
}