html { 
  background: url('dustbowl.jpg') no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

body {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-title {
  position: absolute;
  top: 50px;
}

.hero-title {
  background: rgba(0, 0, 0, 0.4);
  padding: 15px 15px 15px 40px;
  text-align: center;
}

.hero-title::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px);
}

.text-wraper {
  position: relative;
  color: #FFFFFF;
  width: 100%;
}

.main-title {
  font-weight: 700;
  line-height: 1em;
  font-size: 2.5em;
  font-family: Lato, sans-serif;
  letter-spacing: 0.4em;
}

.sub-title {
  font-size: 24px;
  font-weight: 300;
  line-height: 1em;
  text-transform: uppercase;
}

.details-text {
  font-size: 24px;
  font-family: Lato, sans-serif;
  font-weight: 300;
  line-height: 1em;
  letter-spacing: 0.1em;
}

a:link {
  color: white;
}

a:visited {
  color: white;
}

a:hover {
  color: grey;
}

a:active {
  color: blue;
}