@charset "UTF-8";

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

.divRoxa{
    background-color: rgb(187, 128, 255);
    height: 20vh;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 2vw;
}

.bolaRoxa{
    height: 130px;
    width: 130px;
    background-color: rgba(115, 64, 162, 0.992);
    border-radius: 50%;
}

.divVerde{
    background-color: rgb(89, 189, 89);
    height: 20vh;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2vw;
}

.bolaVerde{
    height: 130px;
    width: 130px;
    border-radius: 50%;
    background-color: rgb(23, 120, 23);
}

.divVermelha{
    background-color: rgb(252, 90, 90);
    height: 20vh;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2vw;
}

.bolaVermelha{
    background-color: rgb(142, 0, 0);
    height: 130px;
    width: 130px;
    border-radius: 50%;
}

.divAmarela{
    background-color: rgb(247, 247, 88);
    height: 20vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bolaAmarela{
    background-color: rgb(134, 134, 1);   
    height: 130px;
    width: 130px;
    border-radius: 50%;
}

.divAzul{
    background-color: rgb(115, 199, 255);
    height: 20vh;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.bolaAzul{
    background-color: rgb(6, 70, 220);
    height: 130px;
    width: 130px;
    border-radius: 50%;
}