body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #f4f4f4;
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 800px;
}

.box {
    width: 120px;
    height: 120px;
    background-color: #a5a7ff;
    margin: 10px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.box:hover {
    background-color: #363577;
}

.move:hover {
    transform: translate(50px, 20px);
}

.rotate:active {
    transform: rotate(45deg);
}

.scale img {
    width: 200px;
    transition: transform 0.3s ease;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.scale img:hover {
    transform: scale(1.2);
}

.skew:hover {
    transform: skewX(20deg);
}

.combo:hover {
    transform: translate(30px, 30px) scale(1.2) rotate(30deg);
}