body {
    font-family: Arial, sans-serif;
    margin: 2em;
    background-color: #000;
    color: #BBB;
}

header, footer {
    text-align: center;
    margin-bottom: 1em;
}

footer img {
    width: 1em;
    height: 1em;
}

h1 a {
    text-decoration: none;
    color: #777;
}

h2 {
    margin-bottom: 1em;
    text-align: center;
    font-style: oblique;
}

h6 {
    text-align: center;
    padding: 0;
    height: 0;
    margin: 0;
}

form {
    background: #444;
    padding: 1em 2em 2em 2em;
    border-radius: 5px;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
    max-width: 500px;
    margin: auto;
}

label {
    font-weight: bold;
    margin-top: 1em;
    display: block;
}

input[type="file"],
input[type="url"],
input[type="text"],
input[type="password"],
button {
    width: 100%;
    padding: 0.5em;
    margin-top: 0.3em;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
    font-size: 1em;
}

button {
    background-color: #222;
    color: #FFF;
    border: none;
    margin-top: 1.5em;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background-color: #333;
}

#progressContainer {
    max-width: 500px;
    margin: 1em auto 0;
    text-align: center;
}

progress {
    width: 100%;
    height: 1.5em;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 3px;
    overflow: hidden;
}

progress::-webkit-progress-bar {
    background-color: #333;
}

progress::-webkit-progress-value {
    background-color: #ccc;
}

progress::-moz-progress-bar {
    background-color: #ccc;
}

#message {
    max-width: 500px;
    margin: 1em auto;
    font-weight: bold;
    text-align: center;
}

#logo {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  padding: 10px;
}

#logo img {
  width: 150px;
  height: auto;
}