@import url("https://fonts.googleapis.com/css2?family=Amiri:wght@400;700&family=Montserrat&display=swap");
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

h1,
.logo {
  font-family: "Amiri", serif;
  font-weight: normal;
}

p,
a {
  font-family: "Montserrat", sans-serif;
}

ul {
  list-style: none;
}

strong {
  color: #232c33;
}

.main-bg,
.social,
.pagination {
  position: absolute;
}

.social {
  display: none;
}

header {
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1rem;
}

header .logo {
  font-weight: bold;
  text-decoration: none;
  color: black;
  font-size: 2rem;
}

header .logo img {
  -webkit-transform: translateX(-0.7rem);
          transform: translateX(-0.7rem);
  height: 1.4rem;
}

header .menu {
  height: 30px;
}

header ul {
  display: none;
}

.main-bg {
  background: -webkit-gradient(linear, left top, left bottom, from(white), to(transparent)), url("../img/adam-miller-dBaz0xhCkPY-unsplash.jpg") no-repeat top/cover;
  background: linear-gradient(to bottom, white, transparent), url("../img/adam-miller-dBaz0xhCkPY-unsplash.jpg") no-repeat top/cover;
  width: 40%;
  height: 100%;
  z-index: -1;
  right: 0;
}

.main-content {
  padding: 25vh 6rem 0 5rem;
}

.main-content h1 {
  font-size: 3.5rem;
  line-height: 3.2rem;
  margin-bottom: 1rem;
}

.main-content p {
  margin-left: -5rem;
  font-size: 1.2rem;
  line-height: 2rem;
  padding-left: 35%;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(25%, #f0f3f4), color-stop(25%, transparent), to(transparent));
  background-image: linear-gradient(to right, #f0f3f4 25%, transparent 25%, transparent);
}

footer {
  width: 80%;
  background: #232c33;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 5vh;
}

footer .space {
  width: 10rem;
  height: 10rem;
  background: url("../img/casey-horner-RmoWqDCqN2E-unsplash.jpg") no-repeat center/cover;
}

footer .cta {
  color: white;
  text-decoration: none;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin: 3rem auto;
  position: relative;
  white-space: nowrap;
}

footer .cta:before {
  content: "";
  position: absolute;
  width: 95%;
  height: 3.2rem;
  border: 0.5px solid white;
  left: -1rem;
  top: -1rem;
}

.pagination {
  z-index: 1;
  background: rgba(255, 255, 255, 0.8);
  right: 0;
  top: 30vh;
}

.pagination li {
  padding: 1rem 2rem 2rem 1rem;
  position: relative;
}

.pagination li::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border: 1px solid #232c33;
  border-radius: 50%;
}

.pagination .active::before {
  background: #232c33;
}

@media screen and (min-width: 550px) {
  html {
    font-size: 75%;
  }
  .menu {
    display: none;
  }
  nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  nav ul li a {
    color: black;
    text-decoration: none;
    display: block;
    padding: 1rem 1.5rem;
    font-size: 1.2rem;
  }
  .main-content p {
    width: 90%;
    padding-left: 25%;
  }
  .social {
    display: unset;
    z-index: 1;
    left: 0;
    top: 47vh;
    background: rgba(255, 255, 255, 0.8);
  }
  .social li {
    padding: 0.6rem 1rem;
  }
  .social li svg {
    height: 1.5rem;
    width: 1.5rem;
    fill: #232c33;
  }
}

@media screen and (min-width: 900px) {
  html {
    font-size: 87.5%;
  }
  footer {
    width: 70%;
  }
  footer .space {
    width: 15rem;
    height: 15rem;
  }
  .main-content {
    padding: 25vh 8rem 0 7rem;
  }
  .main-content p {
    margin-left: -7rem;
  }
}

@media screen and (min-width: 1200px) {
  html {
    font-size: 100%;
  }
  .main-content p {
    width: 50%;
    padding-left: 15%;
  }
  .main-bg {
    right: 3rem;
  }
}
/*# sourceMappingURL=main.css.map */