body {
    margin: 0;
    background-color: #1e1e1e;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

* {
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 1.2rem;
    color: #fff;
    margin-top: 20px;
}
.servers-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    cursor: text;
}

.shadow-circle {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    z-index: 0;
    background: conic-gradient(
        from 0deg,
        rgb(1, 44, 82),
        rgb(7, 27, 106),
        rgb(9, 210, 36),
        rgb(20, 105, 3)
    );
    animation: rotateShadow 4s linear infinite;
    filter: blur(20px);
}

@keyframes rotateShadow {
    0% { transform: rotate(0deg);}
    100% {transform: rotate(360deg);}
}

.servers-img {
    position: relative;
    width: 80px;
    height: 80px;
    z-index: 1;
    object-fit: contain;
}

footer {
    width: 100%;
    position: absolute;
    bottom: 10px;
    text-align: center;
    font-size: 0.8rem;
    color: #5f5f5f;
}