* {
  margin: 0;
  padding: 0;
}

.clear {
  clear: both;
}

body {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url("img/background.jpg");
  background-size: cover;
}

.bg-color {
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.wrapper {
  position: absolute;
  top: 50%;
  left: 30px;
  right: 30px;
  margin: auto;
  transform: translateY(-50%);
  background: #fff;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  z-index: 10;
  text-align: center;
  padding: 45px 30px 20px 30px;
  border-radius: 5px;
  max-width: 800px;
}

.wrapper .head {
  width: 100%;
  margin-bottom: 30px;
}
.wrapper .head h2 {
  font-family: "DM Serif Display", serif;
  line-height: 0.7;
  letter-spacing: 1px;
}
.wrapper .head span {
  color: #888;
}

.wrapper .text {
  font-family: "Roboto", sans-serif;
  padding: 15px;
  background: #fafafa;
  margin-bottom: 20px;
}

.wrapper .text h3 {
  font-family: "DM Serif Display", serif;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.wrapper .text p {
  margin: 0;
}

.pdf a {
  font-family: "Roboto", sans-serif;
  display: inline-block;
  background: #222;
  color: #fff;
  padding: 10px 15px;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 5px;
  transition: 0.1s linear all;
  text-transform: uppercase;
}

.pdf a:hover {
  color: #222;
  background: #fff;
  border: 1px solid #ddd;
}

.pdf a i {
  margin-right: 5px;
}
