/* Reset Things */

* {
  margin: 0;
  padding: 0;
  font-size: 1em;
  font-family: inherit;
}

html {
  color: #555;
  font-family: "Open Sans", sans-serif;
  font-size: 62.5%;
}

/* General Structure */

body {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 100vh;
}

.page-wrap {
  padding: 40px;
}

/* Header */

.logo {
  background-image: url("../img/logo.png");
  background-repeat: no-repeat;
  background-size: 25rem 18rem;
  display: block;
  height: 18rem;
  margin: 0 auto 40px;
  position: relative;
  text-indent: -999rem;
  width: 25rem;
}

/* Main */

.main {
  margin: auto;
  max-width: 50rem;
}

h2 {
  color: #151515;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  text-align: center;
}

p {
  font-size: 1.8rem;
  line-height: 1.4;
  text-align: center;
}

/* Media Queries */

@media only screen and (max-width: 768px) {
  h2 {
    font-size: 2.4rem;
  }

  p {
    font-size: 1.6rem;
  }
}
