@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Nanum+Pen+Script&family=Parisienne&family=Sacramento&family=Sorts+Mill+Goudy:ital@0;1&display=swap');

.logo {
    font-size: 24px;
    font-weight: 550;
    padding: 7px;
    margin: 0;
}

@keyframes logoAnim {
    0% {
        background-position: 0 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0 50%;
    }
}


.logo:hover .top-b1,
.logo:hover .top-b2,
.logo:hover .center-a,
.logo:hover .bottom-text,
.logo:hover .bottom-text div {
    color: deeppink;
}


.logo-name-container {
    position: relative;
    width: 140px;
    height: 48px;
    font-family: 'Sorts Mill Goudy', serif;
    /* background: inherit;
    background-clip: text;
    color: transparent; */
}



.logo-name-container div {
    font-family: 'Sorts Mill Goudy', serif;
    margin: 0;
}

.top-b1 {
    position: absolute;
    background: linear-gradient(45deg, #590707, #9e0f0f, #9e0f0f, #9e0f0f, #ea2525, #d76f2a, #d76f2a, #fff83a, #fff83a, #3aad1a);
    background-size: 300% 300%;
    background-clip: text;
    color: transparent;
    text-decoration: none;
    animation: logoAnim 12s ease-in-out infinite;
}

.center-a {
    position: absolute;
    background: linear-gradient(45deg,#9e0f0f,#9e0f0f,#9e0f0f, #9e0f0f, #ea2525, #d76f2a, #d76f2a, #fff83a, #3aad1a, #3aad1a, #3aad1a, #3aad1a);
    background-size: 300% 300%;
    background-clip: text;
    color: transparent;
    text-decoration: none;
    animation: logoAnim 12s ease-in-out infinite;
    top: -60%;
    left: 5%;
    font-size: 65px;
    transform: rotateX(180deg);
    margin: 0;
    padding: 0;
}

.top-b2 {
    position: absolute;
    background: linear-gradient(45deg, #ea2525, #d76f2a, #fff83a, #fff83a, #3aad1a, #3aad1a, #151141, #651490, #821398, #821398);
    background-size: 300% 300%;
    background-clip: text;
    color: transparent;
    text-decoration: none;
    animation: logoAnim 12s ease-in-out infinite;
    left: 35%;
}

.bottom-text {
    position: absolute;
    background: linear-gradient(45deg, #ea2525, #d76f2a, #fff83a, #fff83a, #3aad1a, #3aad1a, #151141, #651490, #821398, #821398);
    background-size: 300% 300%;
    background-clip: text;
    color: transparent;
    text-decoration: none;
    animation: logoAnim 12s ease-in-out infinite;
    top: 20px;
    left: 40%;
    display: flex;
    flex-direction: row;
}


.bottom-text div {
    background: linear-gradient(45deg, #d76f2a,#fff83a,#fff83a, #fff83a,#fff83a,#fff83a, #3aad1a, #3aad1a, #151141, #651490, #821398, #821398, #821398, #821398);
    background-size: 900% 900%;
    background-clip: text;
    color: transparent;
    text-decoration: none;
    animation: logoAnim 12s ease-in-out infinite;
    display: inline-block;
    transform: rotateX(180deg) translateY(0.215em);
}


@media (max-width: 1408px) {

    .logo-name-container {
        width: 100px;
    }

    .logo {
        font-size: 18px;
    }

    .center-a {
        font-size: 52px;
        top: -45%;
    }

    .top-b2 {
        left: 37px;
    }

    .bottom-text {
        top: 20px;
        left: 47px;
    }

}


@media (max-width: 460px) {
    .logo-name-container {
        height: 30px;
    }

    .logo {
        font-size: 13px;
    }

    .center-a {
        font-size: 37px;
        top: -51%;
    }

    .top-b2 {
        left: 30px;
    }

    .bottom-text {
        top: 13px;
        left: 37px;
    }
    
}