@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300&display=swap');
body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: black;
    cursor: none;
    font-family: 'Raleway', sans-serif;
}

.loader {
    color: white;
    position: relative;
    width: 15rem;
    height: 15rem;
    border-radius: 50%;
    animation: animate 6s linear infinite;
    background: linear-gradient(#00fff2, #ffeb3b, #ff00e0, #14ffe9);
}

@keyframes animate {
    0% {
        transform: rotate(0deg);
    }
    50% {
        width: 25rem;
        height: 25rem;
    }
    100% {
        transform: rotate(360deg);
    }
}

.loader span {
    position: absolute;
    opacity: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(#00fff2, #ffeb3b, #ff00e0, #14ffe9);
}

.loader span:nth-child(1) {
    filter: blur(5px);
}

.loader span:nth-child(2) {
    filter: blur(10px);
}

.loader span:nth-child(3) {
    filter: blur(25px);
}

.loader span:nth-child(4) {
    filter: blur(50px);
}

.loader:after {
    content: 'Breathe';
    padding: 95px 30px 30px 30px;
    text-align: center;
    position: absolute;
    font-size: 1.8rem;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: black;
    border-radius: 50%;
    animation: animate2 6s linear infinite;
}

@keyframes animate2 {
    0% {
        transform: rotate(360deg);
        padding: 92px 30px 30px 30px;
        font-size: 1.8rem;
    }
    50% {
        padding: 162px 50px 50px 50px;
        font-size: 3rem;
    }
    100% {
        transform: rotate(0deg);
        padding: 92px 30px 30px 30px;
        font-size: 1.8rem;
    }
}


/* 240229 */