#lines-div {
    background: repeating-linear-gradient(to right, transparent 0 4px, #3F3F3F 0 5px) fixed;
    width: 100%;
    min-height: 100%;
    display: flex;
}

#fade-div {
    background: linear-gradient(to bottom, white 50px, 60%, transparent 90%) fixed;
    width: 100%;
}

#overflow-div {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    /*overflow: hidden;*/
    max-height: 100%;
}

#logo-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
}

#logo-div {
    margin-top: 0.5rem;
    margin-left: 2rem;
    width: 100%;
    max-width: 62.5rem;
}

#innerflow-div {
    position: relative;
    margin: 2rem;
    margin-top: 0.5rem;
    margin-bottom: 4rem;
    max-width: 62.5rem;
    width: 100%;
    border: .75rem solid #303030;
    color: white;
}

#files-control-div {
    background: #222222;
    padding-top: 2rem;
}

#files-main-div {
    padding: 2rem;
    padding-left: 2vw;
    padding-right: 2vw;
    background: #090909;
}

#files-info-content {
    margin-left: 2rem;
    margin-right: 2rem;
}

button > a {
    color: white;
    display: block;
    width: 100%;
    text-decoration: none;
}

.item {
    display: grid;
    grid-template-columns: auto minmax(15%, 6rem) minmax(25%, 6rem);
    grid-gap: 0.1rem;
    width: 100%;
    color: white;
    min-height: 1.6rem;
    text-decoration: none;
    padding: 0.2rem 0rem 0.2rem 0.35rem;
    overflow-wrap: anywhere;
}

.item:hover {
    background-color: #494949;
}

.file-time {
    text-align: right;
    padding-right: 0.2rem;
}

.file-size {
    text-align: right;
}

/*
Extra small devices (phones, 600px and down)
@media only screen and (max-width: 600px) {...}

Small devices (portrait tablets and large phones, 600px and up)
@media only screen and (min-width: 600px) {...}

Medium devices (landscape tablets, 768px and up)
@media only screen and (min-width: 768px) {...}

Large devices (laptops/desktops, 992px and up)
@media only screen and (min-width: 992px) {...}

Extra large devices (large laptops and desktops, 1200px and up)
@media only screen and (min-width: 1200px) {...}
*/

@media only screen and (max-width: 640px) {
    h2 { font-size: 1.0em; }
    #innerflow-div {
        margin-left: 0;
        margin-right: 0;
        grid-template-columns: auto;
    }
    .item { grid-template-columns: auto; }
    .file-time { text-align: left; }
    .file-size { text-align: left; }
}

@media only screen and (min-width: 641px) and (max-width: 960px) {
    #innerflow-div {
        margin-left: 0;
        margin-right: 0;
        grid-template-columns: 30% auto;
    }
}

@media only screen and (max-width: 360px) {
    html {
        font-size: 200%;
    }
}
@media only screen and (min-width: 361px) and (max-width: 480px) {
    html {
        font-size: 150%;
    }
}
