* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  color: #fff;
  font-family: "Cairo", sans-serif;
  font-size: 48px;
}
@media screen and (max-width: 1000px) {
  body {
    font-size: 40px;
  }
}
@media screen and (max-width: 500px) {
  body {
    font-size: 30px;
  }
}

.logo {
  position: absolute;
  top: 50px;
  left: 50px;
  z-index: 10;
}
.logo img {
  height: 60px;
}
@media screen and (max-width: 500px) {
  .logo {
    top: 30px;
    left: 30px;
  }
  .logo img {
    height: 40px;
  }
}

.wrap {
  background: url("../images/hero-redigert.jpg") center;
  background-size: cover;
  width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 160px 50px;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.wrap:after {
  position: absolute;
  content: "";
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background: #000;
  opacity: 0.5;
}
@media screen and (max-width: 500px) {
  .wrap {
    padding: 100px 30px;
  }
}

.container {
  position: relative;
  z-index: 10;
  max-width: 1060px;
  text-align: center;
}
.container p {
  line-height: 1.5em;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
}
.container p + p {
  max-width: 1000px;
}
.container a {
  background: #000;
  display: inline-block;
  color: #fff;
  border: 1px solid #fff;
  font-size: 18px;
  padding: 10px 40px;
  border-radius: 50px;
  text-decoration: none;
}