.mv-section{
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
}

.mv-section .circle-text-main{
    font-size: 200px;
    animation: scale-in 2s linear;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.mv-section .circle-text-main span{
    font-size: 47px;
    margin-bottom: -60px;
}

@keyframes scale-in {
    0%{
        transform: scale(0);
    }
    100%{
        transform: scale(1);
    }
}

@media (max-width:499px){
}