* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container p {
    position: absolute;
    color: #fff;
    font-size: 30px;
    letter-spacing: 2px;
    text-align: center;
    bottom: -120px;
}

.ring {
    position: relative;
    width: 150px;
    height: 150px;
    border: 4px solid transparent;
    border-radius: 50%;
    margin: -30px;
}

.ring::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: currentColor;
}

.ring:nth-child(1) {
    border-top: 4px solid #ffc2cc;
    animation: animate1 3s linear infinite;
}

.ring:nth-child(1)::after {
    color: #ffc2cc;
    right: 15px;
    top: 15px;
    box-shadow: 0 0 0 5px rgba(255, 194, 204, 0.7),
        0 0 0 10px rgba(255, 194, 204, 0.3), 0 0 0 20px rgba(255, 194, 204, 0.1);
}

.ring:nth-child(2) {
    border-left: 4px solid #ffa600;
    animation: animate2 3s -0.5s linear infinite reverse;
}

.ring:nth-child(2)::after {
    color: #ffa600;
    left: 15px;
    bottom: 15px;
    box-shadow: 0 0 0 5px rgba(255, 166, 0, 0.7),
        0 0 0 10px rgba(255, 166, 0, 0.3), 0 0 0 20px rgba(255, 166, 0, 0.1);
}

.ring:nth-child(3) {
    position: absolute;
    top: -80px;
    border-left: 4px solid #89cfeb;
    animation: animate3 3s -2s linear infinite reverse;
}

.ring:nth-child(3)::after {
    color: #89cfeb;
    left: 15px;
    bottom: 15px;
    box-shadow: 0 0 0 5px rgba(137, 207, 235, 0.7),
        0 0 0 10px rgba(137, 207, 235, 0.3), 0 0 0 20px rgba(137, 207, 235, 0.1);
}

@keyframes animate1 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate2 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate3 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
