.button {
 display: inline-block;
 margin: 1.75rem;
    padding: 1.5rem 2em;
    border: none;
    border-radius: 1.1875rem;
    outline: none;
    background-color: #000000;
    color: white;
    font-family: 'Press Start 2P', cursive;
    font-size: 1.25em;
    font-weight: 400;
    line-height: 1.5rem;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 150ms ease-out;
}


/*	
.button {
  display: inline-block;
  margin: 0.75rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.1875rem;
  outline: none;
  background-color: #000000;
  color: white;
  font-family: 'Press Start 2P', cursive;
  font-size: 1.25em;
  font-weight: 400;
  line-height: 1.5rem;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 150ms ease-out;
}*/


.button:focus, .button:hover {
  background-color: #000000;
  box-shadow: 0 0 0 0.1875rem white, 0 0 0 0.375rem #000000;
}
.button:active {
  background-color: #000000;
  box-shadow: 0 0 0 0.1875rem #000000, 0 0 0 0.375rem #000000;
  transition-duration: 75ms;
}
.button.is-outlined {
  border: 0.1875rem solid 000000;
  background-color: transparent;
  color: 000000;
}
.button.is-outlined:focus, .button.is-outlined:hover {
  border-color: #000000;
  color: #000000;
}
.button.is-outlined:active {
  border-color: #000000;
  color: #000000;
}

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

html {
  background-color: #fafafa;
  font-family: Roboto, sans-serif;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  width: 100%;
}

body {
  align-items: center;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  background: url("../images/1.gif");

}