* {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  overflow: hidden;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  background: #f8f5f5;
  font-family: acumin-pro,sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #1a1a1a;
  height: 100%;
}

body {
  height: 100%;
  width: 100%;
  display: table;
  
}

#margin-space {
  display: table-cell;
  vertical-align: middle;
}

#container {
  margin: auto;
  max-width: 700px;
  padding: 50px;
}

a:link, a:visited {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dotted #1a1a1a;
}

a:hover {
  /* color: #f08686; */
  text-decoration: none;
  border-bottom: 1px solid;
}

section {
  font-family: inherit;
  color: inherit;
  font-weight: 400;
  padding-bottom: 1em;
}

section h1 {
  font-family: acumin-pro-wide,sans-serif;
  text-transform: uppercase;
  padding-bottom: 0.75em;
}

section p {
  line-height: 175%;
  padding-bottom: 1em;
}

footer p {
  font-family: inherit;
  color: inherit;
  font-weight: 400;
  line-height: 125%;
  padding-bottom: 1em;
}

/*MEDIA QUERY*/
@media only screen and (max-width : 320px) {
  html {
      font-size: 18px;
  }

  }