* {
    /* background: rgb(0 100 0 / 0.1) !important; */
}



@font-face {
    font-family: Chicago;
    src: url(ChicagoFLF.ttf);
}

:root {
    --content-width: 50rem;
    --bg-image: url(just-water.gif);
    --shadow: 5px -5px 29px 0px rgba(0, 0, 0, 0.428);
}

html {
    background: var(--bg-image);
    background-size: 700px;
    filter: grayscale(100%) contrast(1.25);
}

/* grid */
.parent {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    margin: auto;
    width: var(--content-width);
    /* width: clamp(50vw, 60vw, 70vw); */
}

.div1 { grid-area: 1 / 1 / 2 / 2; }
.div2 { grid-area: 2 / 1 / 3 / 2; }
.div3 { grid-area: 3 / 1 / 4 / 2; }
.div4 { grid-area: 1 / 2 / 2 / 3; }
.div5 { grid-area: 2 / 2 / 3 / 3; }
.div6 { grid-area: 3 / 2 / 4 / 3; }
.div7 { grid-area: 1 / 3 / 2 / 4; }
.div8 { grid-area: 2 / 3 / 3 / 4; }
.div9 { grid-area: 3 / 3 / 4 / 4; }

.parent div {
    /* From https://css.glass */
    background: rgba(255, 255, 255, 0.21);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6.4px);
    -webkit-backdrop-filter: blur(6.4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    min-height: 20rem;
    width: auto;
}

@media (min-width: 850px){
    
}

header {
    width: var(--content-width);
    height: 6rem;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items:end;
    padding-bottom: 1rem;
}
header h1 {
    font-family: 'Chicago';
    margin: 0;
    color: white;
    /* filter: invert(100%);
    background: var(--bg-image);
    background-size: 1rem;
    color: transparent;
    background-clip: text; */
    font-size: 3em;
}
/* h1::after {
    content: "erbar.neocities.org";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 2px;
    background-color: red;
} */
