body {
    background-color: white;
}

.text-green {
    color: green;
}

.geometric-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    /* Add your CSS for geometric shapes here */
}

/* Example geometric shape */
.shape {
    position: absolute;
    background-color: green;
    /* Adjust shape properties like width, height, border-radius, etc. */
}