body,
html {
    width: 100vw;
    height: 100vh;
    align-content: center;
    overflow: hidden;
    margin: 0;
}

.creative-circles {
    background-color: yellow;
}

.creative-circles>.title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    z-index: 2;

    padding: 36px 12px;
    background-color: purple;
    color: white;
    border-radius: 50%;
    box-shadow: 0 0 20px 17px rgba(0, 0, 0, 0.3);
    border: 2px solid #f5e942;
}

.creative-circles>.content {
    aspect-ratio: 1 / 1;
    max-width: 100%;
    max-height: 100%;

    position: relative;
    margin: auto;

    border: 1px solid;
    border-radius: 50%;
    box-sizing: border-box;

    cursor: cell;

    background-color: green;
    border: 4px solid #2a3da5;
}