* {
    --blue: #00f;
    font-family: 'monospace';
    font-variant-emoji: unicode;
    font-size: 18px;
    word-break: break-all;
}

::selection {
    background: #000;
    color: #fff;
}

h1 {
    font-size: 22px;
    padding-bottom: 20px;
}

body {
    text-align: center;
    margin-top: 100px;
}

@media (prefers-color-scheme: dark) {
    :root {
        color-scheme: dark;
    }

    body {
        --blue: #36f;
        background: #222;
        color: #ddd;
    }

    ::selection {
        background: #fff;
        color: #000;
    }

    a {
        color: #36f;
    }
}

hr {
    display: none;
}

@media screen and (max-width: 1000px) { 
    pre { display: none; }
}

/*
.nginx-list {
    min-width: 500px;
    padding: 40px 40px;
    border-bottom: 2px rgba(18, 83, 24, 0.44) solid;
    border-top: 2px rgba(18, 83, 24, 0.44) solid;
}

.nginx-list > li {
    display: flex;
    list-style: none;
    line-height: 34px;
    border-bottom: 1px rgba(18, 83, 24, 0.44) solid;
    padding: 0 10px;
}

.nginx-list > li.back .svg-icon {
    height: 25px;
    margin: 5px 0;
    fill: #125318;
}

.nginx-list > li:hover {
    background-color: #a5f29f;
    border-bottom-color: #125318;
}

.nginx-list > li .date {
    order: 1;
    flex: 1;
    text-align: start;
    margin-right: 20px;
}

.nginx-list > li .size {
    order: 3;
    flex: 1;
    text-align: end;
    min-width: 75px;
}

.nginx-list > li a {
    order: 2;
    flex: 3;
    margin-right: 20px;
    text-overflow: ellipsis;
    overflow-x: hidden;
    color: blue;
}

.nginx-list > li a,
.nginx-list > li a:visited {
    text-decoration: none;
    color: black;
    text-overflow: ellipsis;
    overflow-x: hidden;
}

.nginx-list > li span {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    min-width: 300px;
    display: inline-block;
    color: #666;
    padding-left: 10px;
    padding-right: 10px;
    background-color: rgba(255, 255, 255, 0.45);
}*/
