html, * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  background: #eee;
  margin: 0;
  min-height: 100vh;
}

@font-face {
  font-family: "Vulf_Sans-Light";
  src: url("Vulf_Sans-Light.woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Vulf_Sans-Bold";
  src: url("Vulf_Sans-Bold.woff");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Vulf_Sans-Regular";
  src: url("Vulf_Sans-Regular.woff");
  font-weight: normal;
  font-style: normal;
}

.page {
  background: #FFF7E1;
}

p {
  font-family: "Vulf_Sans-Light", sans-serif;
  font-weight: normal;
}

h1 {
  font-family: "Vulf_Sans-Bold", sans-serif;
  font-weight: bold;
}

h2, h3 {
  font-family: "Vulf_Sans-Regular", sans-serif;
  font-weight: normal;
  margin-top: 0;
}

* {
  color: rgba(0, 0, 0, 0.9);
}

a {
  text-decoration: underline;
  text-decoration-color: rgba(0, 0, 0, 0.5);
}

@media screen and (min-width:1000px) { 
  body {
    padding: 50px;
  }

  .page {
    border: 20px solid #fff;
    margin: 0 auto;
    overflow: hidden;
    padding: 50px 80px 34px 80px;
    width: 900px;
  }

  h1 {
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 34px;
  }

  h2 {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 120px;
  }

  h3, p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .section {
    width: calc(50% - 20px);
    float: left;
  }

  .section:nth-of-type(1) {
    margin-right: 40px;
  }
}

@media screen and (max-width:1000px) and (min-width:700px) { 
  body {
    padding: 50px;
  }

  .page {
    border: 20px solid #fff;
    margin: 0 auto;
    overflow: hidden;
    padding: 50px 80px 34px 80px;
    max-width: 700px;
  }

  h1 {
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 34px;
  }

  h2 {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 32px;
  }

  h3, p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 16px;
  }
}


@media screen and (max-width:700px) { 
  body {
    padding: 18px;
  }

  .page {
    border: 8px solid #fff;
    margin: 0 auto;
    padding: 30px 30px 15px 30px;
    max-width: 480px;
  }

  h1 {
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  h2 {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 30px;
  }

  h3, p {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 15px;
  }
}
