* {
    height: 100vh;
}

body {
    background-image: linear-gradient(-120deg, 
    #6D0FFF,
    #9C00FF, 
    #CC00E6,  
    #FF00BF,
    #FF0093, 
    #FF006A, 
    #FF3B1C,
    #FF6100, 
    #FFCD00);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 98vh;
}

.quadrado {
    display: flex;
    position: absolute;
    justify-content: flex-end;
    flex-direction: row;
    width: 200px;
    height: 200px;
    border: 18px solid white;
    border-radius: 55px;
}

.circulo {
    display: flex;
    justify-content: flex-end;
    width: 100px;
    height: 100px;
    border: 18px solid white;
    border-radius: 80px;
}

.bolinha {
    width: 30px;
    height: 30px;
    background-color: white;
    border-radius: 50%;
    margin: 9%;
    
}