body {
    background-image: url("Cool2.GIF");
    --hh: 100px;
    margin: 0;
}

* {
    box-sizing: border-box;
}
h1 {
    text-align: center;
    font-size: 50px;
    color: rgb(252, 63, 236);
    font-family: Georgia, 'Times New Roman', Times, serif;


}

.map-container {
    background-image: url("Cool2.GIF");
    overflow: scroll;
    position: relative;
    margin-top: var(--hh);
    width: 100vw;
    height: calc(100vh - var(--hh));
}

.map {
    display: grid;
    grid-template-columns: repeat(17, 1fr);
    grid-template-rows: repeat(10, 1fr);
    border: 1px solid;
    gap: 10px;
    padding: 10px;
    width: calc(100% + 10vw);
    height: calc(100% + 10vh);

}

figure {
    margin: 0;
    grid-column: span 3;
    grid-row: span 4;
    grid-column: var(--c, 1) / span 3;
    grid-row: var(--r, 1) / span 4;

    padding: 1em;

    display: flex;
    align-items: center;


}

img {
    width: 150px;
    max-width: 300px;

}

figure:nth-child(1) {
    --c: 1;
    --r: 2;
}

figure:nth-child(2) {
    --c: 7;
    --r: 5;
}

/*figure:nth-child(3) {
    --c: 7;
    --r: 3
}*/

figure:nth-child(3) {
    --c: 10;
    --r: 2;
}

/*figure:nth-child(5) {
    --c: 10;
    --r: 2
}

figure:nth-child(6) {
    --c: 2;
    --r: 4;
}

figure:nth-child(7) {
    --c: 12;
    --r: 5
}*/

figure:nth-child(4) {
    --c: 14;
    --r: 1;
}

figure:nth-child(5) {
    --c: 5;
    --r: 2.8;
}


