:root{
    --var: 0
}

@font-face {
    font-family: 'Pixel';
    src: url('fonts/triple_dot_digital-7.ttf');
    font-style: normal;
}

h1 {
    font-family: Pixel;
    font-size: 4ch;
    margin-top: 4px;
    margin-bottom: 0;
}

h2 {
    margin-top: 4px;
}

h3 {
    color: aliceblue;
    font-size: 5ch;
    margin-top: 40px;
}

#title {
    width: 8in;
    margin-top: 50px;
    margin-bottom: 30px;
}

body {
    font-family: "Lucida Console";
    background-color: lightgray;
    background-image: url("bgimg/865.GIF");
    background-blend-mode:screen;
    background-repeat: repeat;
}

.grid {
    display: grid;
    grid-template-columns: auto auto auto;
    margin: auto;
    width: 900px;
}

.a_lift{
    transition: transform 200ms, box-shadow 200ms;
}
.a_lift:hover {
    transform: translate(0, -5px);
    box-shadow: 4px 15px;
}

.centered{
    margin: auto;
}

.block{
    background-color: white;
    padding: 16px;
    border: 2px solid black;
    box-shadow: 4px 10px black;
    margin-bottom: 20px;
    width: fit-content;
}

.spacer {
    margin-top: 40px;
    height: 128px;
    margin-bottom: 32px;
}

.banner {
    background-color: black;
    width: 110%;
    height: 128px;
    position: absolute;
    left: -5%;
    text-align: center;
    transform: rotate(-1deg);
}

.gallery {
    margin-left: 8px;
    margin-right: 8px;
}

.gallery > div {
    margin-top: 16PX;
}

.detail {
    display: none;
}

.gallery:hover > .detail{
    display: block;
}

img {
    width: 100%;
    height: auto;
    margin: auto;
}

.icon {
    width: 32px;
    height: auto;
    padding: 8px;
}

.wide {
    grid-column: 1 / span 3;
    width: auto;
}

.mid {
    grid-column:  1 / span 2;
    width: auto;
}

.tall {
    grid-column: 1/span 3;
    grid-row: 1 / span 2;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}


.desc {
    text-align: center;
}

.hsplit{
    display: flex;
}

.hsplit > div {
    width: 50%;
}

@media only screen and (max-width: 768px) {
    .grid {
       display: block;
       width: auto;
    }

    #title {
        width: auto;
        margin: auto;
    }

    .hsplit{
        display: block;
    }

    .hsplit > div {
        width: auto;
    }

    .tall {
        width: auto;
    }

    .gallery  {
        margin-left: 16px;
        margin-right: 16px;
    }
    
}