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

body {
    background-color: whitesmoke;
}

body::before, body::after {
    content: "";
    position: absolute;
    width: 10vw;
    height: 10vw;
    border-radius: 20%;
    z-index: -1;
    filter: drop-shadow(2px 2px 4px gray);

    max-width: 120px;
    max-height: 120px;
}

body::after {
    top: 20%;
    background-color: #EA1179;
    transform: rotate(45deg);
}

body::before {
    top: 70%;
    right: 20%;
    background-color: #ffcc00;
    transform: rotate(-45deg);
}

.cust-container {
    height: 100dvh;
}

.roboIconDiv i {
    font-size: 3rem;
}


.source-info {
    font-size: 0.7rem;
}