* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    width: 100vw;
    height: 100vh;
    background-color: #dadada;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.box {
    background: #ffffff;
    position: relative;
    padding: 15px 20px;
    z-index: 10;
    box-shadow: 20px 20px 5px #00000060;
    transform: translate(0, 0) skewX(-10deg);
    cursor: pointer;
    transition: 0.2s;
}

.box:active {
    transform: translate(5px, 5px) skewX(-10deg);
    box-shadow: 15px 15px 3px #00000060;
}

.unactive {
    transform: translate(0, 0) skewX(-10deg);
    box-shadow: 20px 20px 5px #00000060;
}

.box::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 100%;
    right: -10px;
    bottom: -5px;
    background: #b0b0b0;
    transform: skewY(45deg);
    z-index: 0;
}

.box::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 10px;
    right: -5px;
    bottom: -10px;
    background: #b0b0b0;
    transform: skewX(45deg);
    z-index: 0;
}
.box:nth-child(4)::before {
    background: #b88d00;
} */
