
*
{
    margin: 0;
    padding: 0;
    box-sizing:border-box;
    font-family: sans-serif;
}
body
{
    background: #000;
}

section
{
    position: relative;
    width: 100%;
    padding: 50px;
}
.circle
{
    position: relative;
    overflow: hidden;
}
.circle img
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.circle.circle1
{
    width: 500px;
    height: 500px;
    float: left;
     border-radius:50%;  
     margin: 20px;
     shape-outside: circle();
}
@media only screen and (min-width: 300px) {
    .circle.circle1
    {
        width: 350px;
        height: 350px;
        float: left;
         border-radius:50%;  
         margin: 10px;
         shape-outside: circle();
    }

  }
.circle.circle2
{
    width: 300px;
    height: 300px;
    float: right;
     border-radius:50%;  
     margin: 20px;
     shape-outside: circle();
}
@media only screen and (min-width: 300px) {
   
    .circle.circle2
{
    width: 10px;
    height: 10px;
    float: right;
     border-radius:50%;  
     margin: 20px;
     shape-outside: circle();
}
  }
section h2
{
    color: #fff;
    font-size:2em;
    margin-bottom: 10px;
}
section p
{
    color: #fff;
}