*{
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    text-align: center;
}
h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.description {
    max-width: 600px;
    margin-bottom: 30px;
    font-size: 1.2rem;
    line-height: 1.5;
}
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}
.box {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    color: white;
    transition: transform 0.5s, box-shadow 0.3s;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}
.box:hover {
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.5);
}
.rotateX:hover {
    transform: rotateX(180deg);
}
.rotateY:hover {
    transform: rotateY(180deg);
}
.rotateZ:hover {
    transform: rotateZ(180deg);
}
.scale3D:hover {
    transform: scale3d(1.2, 1.2, 1.2);
}
.translate3D:hover {
    transform: translate3d(20px, 20px, 50px);
}
.effect {
    max-width: 200px;
    text-align: center;
    font-size: 1rem;
    margin-top: 10px;
}