body {
    background-color: #333;
    color: #fff;
    font-family: sans-serif;
    font-size: 5rem;
}

.wrapper {
    padding: 50px;
    min-height: 100%;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.block-wrapper,
.title {
    margin-bottom: 100px;
}

.title {
    text-align: center;
}

.block-wrapper {
    display: flex;
    justify-content: center;
}

.block {
    background: linear-gradient(210deg, #34bb34, rgb(34, 128, 0));
    height: 300px;
    width: 300px;
    border-radius: 1rem;
}

.text {
    font-size: 2rem;
}
/* -------------------------- */
.title::before {
    content: "";
    display: block;
    position: absolute;
    width: 90px;
    height: 90px;
    background: rgb(255, 125, 69);
    border: 5px solid #fff;
    border-radius: 50%;
    left: 300px;
}
.title::after {
    content: "";
    display: block;
    position: relative;
    width: 90px;
    height: 90px;
    background: rgb(76, 36, 255);
    border: 5px solid #fff;
    border-radius: 50%;
    left: 740px;
    bottom: 75px;
}