#game-floor {
    position: relative;
    padding: 160px 20px;
}

.root-meeple {
    position: absolute;
    top: 20%;
    margin: 0;
    z-index: 2;
}

.root-meeple.cat {
    left: -10px;
    transform: rotate(-10deg);
}
.root-meeple.bird {
    left: 80px;
    transform: rotate(5deg);
}
.root-meeple.mice {
    left: 180px;
    transform: rotate(-5deg);
}
.root-meeple.raccoon {
    left: 290px;
    transform: rotate(10deg);
}

#game-floor h2 {
    font-size: 40px;
    color: rbg(var(--blue));
    margin: 0;
}

#game-floor .content-grid {
    display: grid;
    align-items: center;
    row-gap: 40px;
}

#game-floor .title-item {
    padding-bottom: 200px;
}
#game-floor .content-item {
    padding: 16px;
    border: 1px solid rgb(var(--blue));
    border-radius: 10px;
    box-shadow: 0 2px 12px 6px rgba(var(--orange), 0.15);
}
#game-floor .content-item.gallery {
    background: rgb(var(--light));
}
#game-floor .content-item.floor {
    background: rgb(var(--blue));
    color: rgb(var(--light));
}

@media screen and (min-width: 1024px) {
    #game-floor {
        padding: 240px 20px;
        padding-left: 90px;
    }
    #game-floor .content-grid {
        display: grid;
        align-items: start;
        grid-template-columns: 36vw auto;
        grid-template-rows: auto;
        column-gap: 60px;
        row-gap: 60px;
    }

    #game-floor h2 {
        font-size: 100px;
        margin: 0;
        line-height: 90px;
    }

    #game-floor .title-item {
        padding-bottom: 0;
    }
    .content-item ul,
    .content-item ol {
        max-width: 65%;
    }
    #game-floor .content-item {
        padding:  48px 36px;
        margin-right: -40px;
        /* border-top-left-radius: 10px;
        border-bottom-left-radius: 10px; */
    }
    .content-item.floor {
        color: rgb(var(--light));
        grid-column: 2;
    }
    .root-meeple {
        top: 43%;
    }
    .root-meeple.cat {
        left: 60px;
    }
    .root-meeple.bird {
        left: 160px;
    }
    .root-meeple.mice {
        left: 270px;
    }
    .root-meeple.raccoon {
        left: 380px;
    }
}
