section{
    height: 50vh;
    width: 50vw;
    position: absolute;
}

body section:nth-child(1){
    background-color: red;
    top: 0;
    left: 0;
}
body section:nth-child(2){
    background-color: green;
    top: 0;
    right: 0;
}

body section:nth-child(3){
    background-color: yellow;
    bottom: 0;
    left: 0;
}
body section:nth-child(4){
    background-color: deeppink;
    bottom: 0;
    right: 0;
}

/*===============================================curves=============================================================*/
body div{
    height: 100px;
    width: 100px;
    background-color: white;
    z-index: 2;
    position: absolute;
}

body div:nth-child(5){
    top: 0;
    right: 0;
    border-bottom-left-radius: 100%;
}

body div:nth-child(6){
    top: 0;
    left: 0;
    border-bottom-right-radius: 100%;
}

body div:nth-child(7){
    bottom: 0;
    left: 0;
   border-top-right-radius: 100%;
}

body div:nth-child(8){
    bottom: 0;
    right: 0;
    border-top-left-radius: 100%;
}
/*===============================================center curves========================================================*/
body div:nth-child(9){
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: 200px;
    height: 100px;
    border-bottom-left-radius: 108px;
    border-bottom-right-radius: 108px;
}
body div:nth-child(10){
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: 200px;
    height: 100px;
    border-top-left-radius: 108px;
    border-top-right-radius: 108px;
}

/*===============================================center box===========================================================*/
body div:nth-child(11){
    height: 200px;
    width: 200px;
    background-color: white;
    z-index: 2;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    bottom: 0;
}
/*===============================================center curve=========================================================*/
body div:nth-child(12){
    height: 100px;
    width: 100px;
    background-color: red;
    z-index: 3;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    bottom: 0;
    border-radius: 100%;
}

/*===============================================circles==============================================================*/
section>div{
    height: 150px;
    width: 150px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 100%;
}
/*===============================================squers==============================================================*/
section>div>div{
    height: 50px;
    width: 50px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background-color: red;
}