body{
    background-color: black;
}

.title{
    padding: 30px;
    color: aliceblue;
    font-size: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.title::before,
.title::after{
    content: '';
    display: inline-block;
    width: 64px;
    height: 64px;
    border-radius: 100%;
    border: 4px solid white;
} 


.title::before{
    background: linear-gradient(90deg,rgba(253, 29, 29, 1) 60%, rgba(252, 164, 69, 1) 100%);
}

.title::after{
    background: linear-gradient(90deg,rgba(9, 9, 121, 1) 70%, rgba(0, 162, 255, 1) 100%);
}