a {
    color: #E96886;
    text-decoration: none;
    transition: 0.6s ease;
}

html {
  height: 100%;
}

a:hover {
    opacity: 0.4;
    transition: 0.4s;
}

h1, body {
  margin: 0;
}

body {
    background-color: #FBF3F5;
    font-family: 'Circular Std';
}

#page-container {
  margin: 0 48px 0 48px;
  position: relative;
  min-height: 100vh;
}

#footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 2.5rem;            /* Footer height */
  padding-bottom: 24px;
  background-color: #FBF3F5;
}

#content-wrap {
  padding: 0;
  padding-bottom: 2.5rem;    /* Footer height */
  padding-top: 40px;

}

h1 {
    color: #1C1C1C;
    font-weight: 500;
    font-size: 46px;
    max-width: 700px;
    margin-bottom: 32px;
}

p {
    font-size: 18px;
}

@media only screen and (max-width: 600px) {
    h1 {
        font-size: 36px;
        margin-bottom: 24px;
        line-height: 44px;
    }

    #page-container {
      margin: 0 16px 0 16px;
      min-height: -webkit-fill-available;
    }

    #content-wrap {
      padding-top: 16px;
    }

    #footer {
      position: fixed;
      font-size: 12px;
    }
  }


  

