@font-face {
    font-family: "Ubuntu";
    src: url("../font/ubuntu-font-family-0.83/Ubuntu-R.ttf");
}

html {
    color: white;
    background-color: #16161A;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

html {
    font-family: "Ubuntu";
    height: 100vh;
}

body {
    overflow: hidden;
    height: 100%;
    margin: 0;
    align-items: center;
    justify-items: center;
}

#download-files {
    margin: auto;
    align-items: center;
    width: 300px;
    background-color: #0e0e0e;
    padding: 20px;
    border-radius: 5px;
    gap: 15px;
}

#download-files > a {
    width: 300px;
    text-decoration: none;
    color: white;
}

.download-file {
    gap: 20px;
    width: 100%;
}

.file-icon {
    height: 70px;
}

.file-info {
    width: 100%;
    justify-content: space-between;
}

.file-info > hr {
    margin: 4px 0;
}

#footer {
    display: flex;
    align-self: center;
    justify-content: center;
    align-items: center;
    position: absolute;
    height: 35px;
    padding: 0 20px;
    bottom: 0;

    background-color: #0e0e0e;
}