/* body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
    margin: 0;
    font-family: Arial, sans-serif;
} */

.logo-container {
    text-align: center;
    margin-left: 10px;
}

.dice {
    margin-left: 20px;
    width: 40px;
    height: 40px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateDice 5s infinite linear;
}

.face {
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #477af0, #60c3f1);
    /* background: linear-gradient(135deg, #ff5f6d, #ffc371); */
    border: 1px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.front  { transform: translateZ(40px); }
.back   { transform: rotateY(180deg) translateZ(20px); }
.left   { transform: rotateY(-90deg) translateZ(20px); }
.right  { transform: rotateY(90deg) translateZ(40px); }
.top    { transform: rotateX(90deg) translateZ(20px); }
.bottom { transform: rotateX(-90deg) translateZ(20px); }

.logo-text {
    margin-top: 20px;
    font-size: 16px;
    font-weight: bold;
    z-index: 100;
}

@keyframes rotateDice {
    from { transform: rotateX(0deg) rotateY(0deg); }
    to { transform: rotateX(360deg) rotateY(360deg); }
}
