html,
body {
    margin: 0;
    padding: 0;
    border: none;
}

@font-face {
    font-family: 'Rajdhani';
    font-weight: normal;
    font-style: normal;
    src: url('../fonts/Rajdhani-Regular.eot');
    src: url('../fonts/Rajdhani-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Rajdhani-Regular.woff2') format('woff2'),
        url('../fonts/Rajdhani-Regular.woff') format('woff'),
        url('../fonts/Rajdhani-Regular.ttf') format('truetype'),
        url('../fonts/Rajdhani-Regular.svg#Rajdhani-Regular') format('svg');
    font-display: swap;
}

@font-face {
    font-family: 'Rajdhani';
    font-weight: 600;
    font-style: normal;
    src: url('../fonts/Rajdhani-SemiBold.eot');
    src: url('../fonts/Rajdhani-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Rajdhani-SemiBold.woff2') format('woff2'),
        url('../fonts/Rajdhani-SemiBold.woff') format('woff'),
        url('../fonts/Rajdhani-SemiBold.ttf') format('truetype'),
        url('../fonts/Rajdhani-SemiBold.svg#Rajdhani-SemiBold') format('svg');
    font-display: swap;
}

body {
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 400;
}

a,
a:active,
a:focus,
a:hover,
a:visited {
    text-decoration: none;
    color: initial;
}

a:hover {
    text-decoration: underline;
}

.edl-wrap {
    position: relative;
    min-height: calc(100vh - 165px);
    padding: 50px 5% 115px 5%;
    background: linear-gradient(0deg, rgba(30, 144, 255, .1) 0%, rgb(255, 255, 255) 100%);
}

h1 {
    font-size: 80px;
    margin: 30px;
    text-align: center;
    color: dodgerblue;
}

h1::after {
    font-size: 12px;
    font-weight: normal;
    content: 'beta';
}

h2 {
    font-size: 40px;
    margin: 0;
    text-align: center;
}

h3 {
    font-size: 30px;
    margin: 10px;
    text-align: center;
    color: #666;
}

table {
    font-size: 24px;
    margin-top: 30px;
}

table thead tr th {
    font-weight: 600;
}

table tbody tr td {
    font-size: 20px;
    text-align: center;
}

.uploader {
    font-weight: 600;
    position: relative;
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: 200px;
    margin: 100px auto 0 auto;
    border: dashed dodgerblue 4px;
    border-radius: 20px;
}

.uploader::after {
    font-size: 26px;
    font-weight: 600;
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    content: 'Drop EDL files here or click to upload.';
    transform: translate(-50%, -50%);
    color: #666;
}

.uploader input {
    width: 100%;
    height: 100%;
    opacity: 0;
}

.edl-wrap div.dt-buttons {
    position: absolute;
    bottom: -45px;
}

footer {
    font-size: 18px;
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    box-sizing: border-box;
    width: 100%;
    padding: 20px;
    text-align: center;
}