*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "poppins", sans-serif;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #162052;
}

.box{
    position: relative;
    width: 400px;
    height: 400px;
    background: rgba(6, 21, 84, 0.5);
    border-radius: 50%;
    overflow: hidden;
}

.box::before{
    content: "";
    position: absolute;
    inset: -10px 140px;
    background: linear-gradient(315deg, #3abfef, #a2cb7b);
    transition: 0.5s;
    animation: animate 4s linear infinite;
}

.box:hover::before{
    inset: -20px 0px;
}

@keyframes animate{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}

.box::after{
    content: "";
    position: absolute;
    inset: 6px;
    background: #162052;
    border-radius: 50%;
    z-index: 1;
}

.content{
    position: absolute;
    inset: 30px;
    /*border: 6px solid #070a1c;*/
    z-index: 3;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.content img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
    pointer-events: none;
    z-index: 3;
}

.box:hover .content img{
    opacity: 0;
}

.content h2{
    position: relative;
    font-size: 2.9em;
    text-align: center;
    color: #ffffff;
    font-weight: 1000;
    letter-spacing: 0.08em;
   
}

.content h2 span{
    font-weight: 700;
    font-size: 0.80em;
}

.content a{
    position: relative;
    margin-top: 10px;
    padding: 15px 25px;
    background: #a2cb7b;
    color: #ffffff;
    border-radius: 15px;
    font-weight: 500;
    font-size: 2em;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: 0.5s;
}

.content a:hover{
    letter-spacing: 0.2em;
}

