body {
    margin: 0;
    padding: 0;
    background: #111;
    color: white;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    perspective: 1000px;
}

.text-3d {
    font-size: 6rem;
    font-weight: bold;
    color: #fff;
    text-shadow:
        1px 1px 0 #ccc,
        2px 2px 0 #bbb,
        3px 3px 0 #aaa,
        4px 4px 0 #999,
        5px 5px 0 #888,
        6px 6px 0 #777,
        7px 7px 0 #666,
        8px 8px 0 #555,
        9px 9px 0 #444,
        10px 10px 0 #333;
    transform: rotateX(10deg) rotateY(-10deg);
    transition: transform 0.5s ease;
    cursor: pointer;
}

.text-3d:hover {
    transform: rotateX(0deg) rotateY(0deg) scale(1.05);
}