body {
    background: #2c2c2c;


    background-repeat: no-repeat;
    background-size: auto;
  
    cursor: none;
    overflow: hidden;
    font-family: 'Roboto', sans-serif;
}
.bg{
    position: absolute;
    background-size: auto;
 
}

.logo{
    display: flex;
    height: 100px;
    position: absolute;
    left: 65px;
    top: 18px;
    border-radius: 150px;

}
.custom-cursor {
    width: 60px;
    height: 60px;
    background-color: #fff;
    opacity: 0.3;
    border-radius: 50%;
}
.title {
    font-weight: 300;
    text-align: center;
    letter-spacing: 10px;
    font-size: 18px;
    margin-bottom: 100px;
}
.title span {

    background: radial-gradient(circle, #fff 30%, #c2c2c2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: whitesmoke;
}
.holder {
    transform-style: preserve-3d;
    width: 80vw;
    height: 450px;
    margin: 0 auto;
    perspective: 1000px;
}
.cylinder {
    position: relative;
    height: 100%;
    width: 100%;
    transform-style: preserve-3d;
    animation: spin 30s infinite linear;
}
.face {
    background: radial-gradient(circle, #fff 30%, #c2c2c2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-size: 62px;
    letter-spacing: 4px;
    line-height: 50px;
    font-weight: 900;
    text-align: center;
    position: absolute;
    width: auto;
    height: 50px;
    top: 50%;
    left: 50%;
    transform: rotateX(calc(18deg * var(--index))) translateZ(calc(159.1549430919px)) translateX(-50%);
}

@keyframes spin {
    to {
        transform: rotateX(-360deg);
   }
}

@media (max-width:576px) {
    .custom-cursor {
        width: 30px;
        height: 30px;

    }

    .title {
        font-size: 12px;
        margin: 10px;
    }

    .face {
        font-size: 44px;

    }
}