

#rect {
    background-color: blue;
    color:white;
    height:100px;
    width: 200px;
    margin-left:50px;
    text-align:center;
}

#RectBorder {
    background-color:green;
    color:white;
    text-align:center;
    margin-left: 300px;
    height:100px;
    width:200px;
    border-radius:30px;
}

#circle {
    clip-path: circle(20%);
    background-color:blue;
    color:white;
    margin-left: 500px;
    width:500px;
    height:200px;
}

#Pic {
    float:right;
    width:300px;
    height:250px;
    margin-right:400px;
}

#circle2 {
    clip-path: circle(20%);
    background-color:pink;
    color:white;
    margin-left: 500px;
    width:500px;
    height:200px;
}