body, html {
    background-color: #1a1a18;
    color: #69b1ae;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

body > * {
    max-width: 1024px;
}

a {
    color: #69b1ae;
}

ul {
    list-style-image:url('bullet.png');
    text-align: left;
    list-style-position: inside;
    font-size: 25px;
}

li {
    margin: 5px;
}

#Title {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#Title > a {
    display: flex;
    justify-content: center;
}

#Title > a > img {
    width : 50%;
}

#Title > h1 {
    color: white;
    display: flex;
    text-align: center;
    font-size: 40px;
}

#Body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#Buttons {
    display: flex;
    flex-direction: row;
}

.Button {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1em;
}

.Button > div {
    margin: 1em;
    background-size: 100px;
}

input[type="file"] {
    opacity: 0;
    width: 100px;
    height: 100px;
}

#capture {
    background: #1a1a18 url('grab100.png') no-repeat;
    /* <a href="https://www.flaticon.com/free-icons/super-8" title="super 8 icons">Super 8 icons created by Freepik - Flaticon</a> */
}

#upload {
    background: #1a1a18 url('upload100.png') no-repeat;
    /* <a href="https://www.flaticon.com/free-icons/super-8" title="super 8 icons">Super 8 icons created by Freepik - Flaticon</a> */
}

.spin {
    margin: 5px;
    display: inline-block;
    width: 90px;
    height: 90px;
    border: 8px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    border-top-color: #69b1ae;
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
  }
  @keyframes spin {
    to {
      -webkit-transform: rotate(360deg);
    }
  }
  @-webkit-keyframes spin {
    to {
      -webkit-transform: rotate(360deg);
    }
  }

#Spacer {
    height: 100%;
    flex-grow: 1;
}

#Footer {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    align-content: flex-end;
    color: #66547c;
  }

#Footer > a > img {
    width: 30px;
    margin: 5px;
}