:root {
    --main-bg-color: white;
    --main-font-color:black;
    --text-color: #333;
    --font-fat: 6rem; 
    --font-middle: 1.5rem;
    --font-small: 1rem;
    --m1: 10px;
    --p1: 10px 10px;
    --column-gap: 10px;
    --border-top:  1px solid var(--main-font-color);
}

@font-face {
    font-family: "Squarevetica";
    src: url("../font/Squarevetica-Regular.otf") format("opentype");
}

@font-face {
    font-family: "MaisonNeueMono";
    src:  url("../font/MaisonNeueMono.woff") format("woff");
}

#wrap {
    z-index: 1;
    position: absolute;
    width: 100%;
    height: 100%;
    overflow:hidden;
}

#wrap > img {
width: 100%;
position:absolute; 
top:50%; 
transform: translateY(-50%);

filter: grayscale(100%); 
filter: blur(1px);
filter: opacity(10%);
}

.container {
    z-index: 3;
    position: relative;
    width: calc(100vw - var(--m1)*2);
    min-height: 100vh;
    margin: var(--m1);

    display: flex;
    flex-direction: column;
    /* row-gap:10px; */
}
header{
    padding-left: 5px;
    display: flex;
    flex-wrap: wrap;
column-gap: 10px;
}
header > div:nth-child(1)  > span{
    font-size: var(--font-fat);
    line-height: 1;
    font-family: "Squarevetica";
}

#cell-container{
    display: flex;
    flex-direction: column;
}

.line {
    display: flex;
    flex:1;
    justify-content: space-between;
    flex-basis:1;
    padding: 10px 5px 0px 5px;
    row-gap: 5px;
    column-gap: 10px;
    flex-wrap: wrap;
}

.line span {
    border-top: 1px solid var(--main-font-color);
    width: 50%;
    padding-top: 4px;
    padding-left: 5px;
    border-left: 6px solid var(--main-font-color);
    min-width: 150px;
}


.number{
    flex: 0.5 !important;
    background-color: black;
    color:white;
}

.name{
    width: 40% !important;
}

.date{
    width: 45% !important;
}
.description {
    flex:2 !important;
}
.mobile{
    flex:0.2 !important;
    /* text-align: right; */
}
a{
    text-decoration: none;
    color: var(--main-font-color)
}

#descriptionMS{
    display: flex;
    flex: 1;
    justify-content: start;
    font-size: 10px;
    column-gap: 20px;
    margin-top: 5px;
    line-height: 16px;
    list-style-position: inside;
    min-width: 40%;
}

/* #descriptionMS > div{
    flex:1;
} */


@media screen and (max-width: 750px) {

    header > div:nth-child(1)  > span{
        line-height: 0.8;
    }
    #descriptionMS{
        display: inline-block;
        margin: 0;
    }

    .number, .name, .date, .mobile{
        width: calc(50% - 14px) !important;
        flex: 1 !important;
    }

    .description{
        min-width: calc(100% - 11px) !important
    }

    .line {
        column-gap: 5px;
    }
}

@media screen and (min-width: 918px) {
    :root{
        --font-fat:8rem;
    }
    .line:not(.th):hover{
        font-size: 1.5em;
        row-gap: 5px;  
    }
    
    .line:not(.th):hover > span{
        padding: 7px 0px 2px 5px;
    }
    
}