.circle {
    border-radius: 50%;
}

#container {
    background-color: orange;
    margin: 0 auto;
    width: 400px;
    height: 400px;
}

#blockRed {
    background-color: red;
    position: relative;
}

#blockYellow {
    background-color: yellow;
    position: relative;
}

#blockBlue {
    background-color: blue;
    position: relative;
}

.square, .circle {
    width: 100px;
    height: 100px;
    display: block;
    float: left;
}