body {
    margin: 3em auto;
    background: #000000;
    background-image: url('img/bg.png');
    background-position: 95% 100%, top left;
    background-attachment: fixed, scroll;
    background-repeat: no-repeat, repeat;
    color: #f80000;
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    max-width: 73%;
}

a {
    border-bottom: 1px solid #ddd;
    color: #fff;
    text-decoration: none;
}

a:hover {
    border-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-align: center;
}

hr {
    width: 50%;
    color: #bb0000;
}

.details {
    margin-top: 2em;
}

.details > h4 {
    line-height: 1;
    margin: 0.6em 0;
}

.faq-container {
    padding: 15px 10px 50px 10px;
}

.faq-container p {
    color: #f2f2f2;
}

.upload-container {
    min-height: 100vh;
}

.drop-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.drop-area {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    height: 250px;
    border: 4px dashed #f80000;
    color: #ddd;
    padding: 50px;
    font-size: 2.8 em;
    text-transform: uppercase;
    margin: 25px;
}

.drop-area p {
    text-align: center;
}

.drop-area progress {
    width: 100%;
    height: 20px;
    margin-bottom: 20px;
    color: #ff0000;
    background-color: #ff0000;
}

.drop-area #progressText {
    font-size: 1em;
    text-transform: none;
}

#file-input::-webkit-file-upload-button {
    display: none;
}

#file-input {
    width: 100%;
}

#file-input::before {
    content: "Select a file";
    display: block;
    text-align: center;
    width: 100%;
    text-transform: uppercase;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #ddd;
    color: #000;
    font-size: 1.2em;
    font-family: 'Quicksand', sans-serif;
}

pre {
    color: #f2f2f2;
    background-color: #333;
    padding: 10px 20px;
    font-size: 14px;
    font-family: "Lucida Console", Monaco, monospace;
    overflow-x: auto;
    white-space: pre-wrap;
    white-space: -moz-pre-wrap;
    white-space: -pre-wrap;
    word-wrap: break-word;
}

.footer-url {
    color: #666;
    margin: 5px 0;
    border-bottom: none;
    text-decoration: none;
}
.footer-url:hover {
    color: #fff;
}