body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0; /* Remove default margin */
    background-color: #ffffff;
    position: relative;
}

.wheel-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px; /* Adjust size as needed */
    height: 250px; /* Adjust size as needed */
    border-radius: 50%;
}

.image-item {
    position: absolute;
    width: 175px; /* Set width to 180px */
    height: 175px; /* Set height to 180px */
    border-radius: 50%;
    overflow: hidden;
    transform: rotate(calc(var(--i) * 36deg)) translateY(-300px) rotate(calc(var(--i) * -36deg));
    transition: transform 0.3s;
}

.image-item img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.info-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 94%;
    height: 94%;
    color: white;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none; /* Prevent pointer events on the text */
}

.image-item:hover .info-text {
    opacity: 1;
}

.image-item:hover {
    transform: rotate(calc(var(--i) * 36deg)) translateY(-280px) rotate(calc(var(--i) * -36deg)) scale(1.1);
}