body {
    cursor: crosshair;
    background-color: rgb(245, 242, 237);
    background-image: linear-gradient(rgba(0, 0, 0, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

.painter-icon {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background-color: rgb(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 100;
}

.painter-icon::after {
    content: "🖌️";
    font-size: 24px;
    color: white;
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 50;
    display: none;
}
.grid-container {
    transform: skew(15deg,
        15deg);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 columns */
    grid-template-rows: repeat(3, 1fr);
    /* 3 rows */
    height: 100vh;
    width: 100vw;
    gap: 10px;
}

/* Individual Categories */
.category {


position:relative;
    justify-content: center;
    align-items: center;
 color: rgb(0, 0, 0);

    transition: all 0.3s ease;
    opacity: 0.9;
    overflow: scroll;
}

#cat1 {
    grid-column: 3/5;
    grid-row: 2/4;
    justify-content: center;



}
#cat1:hover{
    width: 80vw;
        grid-row: 2/8;
    transform: skewy(-15deg
                    );
    transition: ease-in-out 0.5s;
            z-index: 10;

}


#cat4 {
    grid-column: 1/3;
    grid-row: 1/3;
    z-index: -1;

}
#cat4:hover {
width: 80vw;
z-index: 10;
    transform: skew(-15deg,
                -15deg);

}

#cat2 {
    grid-column: 2/3;
    grid-row: 1/4;

        
}
#cat2:hover {
    transform: skew(-15deg,
                -15deg);

    grid-row: 1/4;  
        grid-column: 2/3;
    transition: ease-in-out 0.5s;
    z-index: 10;
}

#cat3 {
    grid-column: 4/5;
    grid-row: 1/2;
}
#cat3:hover{
width: 80vw;
height: 100vh;
transform: skew(-15deg,
-15deg);

}



#cat5 {
    grid-column: 1/2;
    grid-row: 2/3;

}





#cat6 {
    grid-column: 3/5;
    grid-row: 1/2;
}

img{
width: 100%;
height: 100%;
}

h1{
font-size: 5rem;
z-index: 10;
text-transform: capitalize;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
color: rgb(255, 255, 255);
text-decoration: wavy black 4px;

}