html {
    min-height: 100%;
    background: url("/background.png") center center / cover no-repeat fixed;
}

body {
    min-height: 100vh;
    margin: 0;
    font-family: Inter, sans-serif;

    /* Let the html background show through */
    background: transparent;

    color: #111;
}
@import url("https://longwise.net/fonts/Inter/stylesheet.css");

*{
    box-sizing:border-box;
}

body{

    margin:0;

    font-family:Inter,sans-serif;

    background:#f5f5f5;

    color:#111;
}

/* ---------------- NAV ---------------- */

nav{

    position:sticky;

    top:0;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:14px 30px;

    backdrop-filter:blur(12px);

    background:rgba(255,255,255,.82);

    border-bottom:1px solid rgba(0,0,0,.08);

    z-index:100;
}

nav a{

    display:flex;

    align-items:center;

    gap:12px;

    color:#111;

    text-decoration:none;

    font-weight:700;
}

nav img{

    height:40px;
}

.nav-links{

    display:flex;

    gap:24px;
}

.nav-links a{

    font-weight:500;
}

/* ---------------- PAGE ---------------- */

.page{

    width:min(980px,92vw);

    margin:auto;

    padding:40px 0 80px;
}

.hero{

    background:rgba(255,255,255,.55);

    backdrop-filter:blur(10px);

    border-radius:14px;

    border:1px solid rgba(0,0,0,.08);

    padding:34px;
}

.hero h1{

    margin:0;

    font-size:3rem;

    font-weight:900;

    letter-spacing:-.04em;
}

.hero p{

    color:#555;

    margin-top:10px;
}

/* Apache inserts an <hr> after the H1 on many versions */
hr{

    display:none;
}

/* Hide the default "Index of ..." heading */
h1{

    display:none;
}

/* ---------------- TABLE ---------------- */

table{

    width:100%;

    margin-top:24px;

    background:rgba(255,255,255,.55);

    backdrop-filter:blur(10px);

    border-radius:14px;

    overflow:hidden;

    border-collapse:collapse;

    border:1px solid rgba(0,0,0,.08);
}

th{

    text-align:left;

    font-size:.8rem;

    text-transform:uppercase;

    letter-spacing:.08em;

    color:#666;

    padding:18px;
}

td{

    padding:16px 18px;

    border-top:1px solid rgba(0,0,0,.05);
}

tr{

    transition:.15s;
}

tr:hover{

    background:rgba(255,255,255,.9);
}

td a{

    color:#111;

    text-decoration:none;

    font-weight:600;
}

td a:hover{

    color:#000;
}

/* ---------------- ICONS ---------------- */

img{

    vertical-align:middle;
}

td img{

    margin-right:10px;
}

/* ---------------- FOOTER ---------------- */

footer{

    text-align:center;

    padding:40px;

    color:#666;

    font-size:.85rem;
}

/* ---------------- MOBILE ---------------- */

@media (max-width:700px){

.nav-links{

display:none;

}

.hero h1{

font-size:2rem;

}

th:nth-child(3),
td:nth-child(3){

display:none;

}

}
