
body {
    background-color: #0d141a;
    color: white;
}
h1.header {
    text-align: center;   
    padding: 5px;
    color: goldenrod;
}
p {
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 75%;
}
img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 20%;

}

.button {
    display: inline-block;
    margin: 0.75rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.1875rem;
    outline: none;
    background-color: goldenrod;
    color: white;
    font-family: inherit;
    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: rgb(218, 169, 47);
    box-shadow: 0 0 0 0.1875rem white, 0 0 0 0.375rem rgb(218, 169, 47);
  }
  .button:active {
    background-color: rgb(201, 152, 28);
    box-shadow: 0 0 0 0.1875rem rgb(201, 152, 28), 0 0 0 0.375rem rgb(201, 152, 28);
    transition-duration: 75ms;
  }
  .button.is-outlined {
    border: 0.1875rem solid goldenrod;
    background-color: transparent;
    color: goldenrod;
  }
  .button.is-outlined:focus, .button.is-outlined:hover {
    border-color: rgb(218, 169, 47);
    color: (218, 169, 47)59;
  }
  .button.is-outlined:active {
    border-color: rgb(201, 152, 28);
    color: rgb(201, 152, 28);
  }
  
  *, *::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;
  }