/* CSS reset */
html, body, h1, h2, h3, h4, h5, h6, p, ol, ul, li, pre, code, address, variable, form, fieldset, blockquote {
  font-size: 100%;
  font-weight: normal;
  margin: 0;
  padding: 0;
  text-decoration: none;
}

table {
  border-collapse: collapse; 
  border-spacing: 0;
}

td, th, caption {
  font-weight: normal; 
  text-align: left;
}

img, fieldset {
  border: none;
}

ol {
  list-style: decimal;
  padding-left: 1.4em;
} 

ul {
  list-style: square;
  padding-left: 1.4em; 
}

q:before, q:after {
  content:'';
}

a:link,
a:visited,
a:hover,
a:active {
  color: #000;
  text-decoration: none;
}

/* End CSS reset */

body {
  color: #444;
  font-family: 'PT Sans', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: normal;
}

h1, h2, h3, h4, h5, h6, p {
  margin-top: 0;
}

h1 {
  color: #888;
  margin-top: 20px;
  white-space: normal;
}

.center {
  position: absolute;
  left: 50%;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.center img {
  width: 120px;
}


a.button {
  background-color: #444;
  color: #fff;
  display: inline-block;
  margin: 60px 0 10px;
  padding: 10px 24px;

}

@media only screen and (max-width: 480px) {
  .center {
    max-width: 31vw;
    width: 100%;
  }

  .center img {
    width: 100%;
  }
}
