html {
  width: 100%;
  background: #ff44d8;
  display: flex;
  align-content: center;
  justify-content: center;
  margin: 0;
  padding: 0;

  body {
    margin: 0;
    padding: 1em;
    background: #44ffd8;
    max-width: 960px;
    min-height: 100vh;
    box-shadow: 0 0 3em 0 blue;

    h1 {
      font-size: 2em;
      background: white;
      color: #333;
      border: 1px solid black;
      border-width: 1px 0;     
      position: relative;
      left: -0.5em;
      top: -0.5em;
      width: calc(100% + 0.5em - 2px);
      padding: 0.3em;
    }

    graphics-element {
      background: white;
    }
    
    footer {
      position: fixed;
      z-index: 1;
      right: 0.5em;
      bottom: 0.5em;
      padding: 0.5em 0.5em 0.25em;

      border: 1px solid grey;
      border-radius: 0.5em;
      background: #a9f3ff;
      box-shadow: 2px 2px 0 3px black;

      &:hover {
        background: #02ffff;
      }
      a,
      a:visited {
        font-family: Arial;
        text-decoration: none;
        color: black;
      }
    }
  }
}


