* {
    padding: 0;
    margin: 0;
    border: 0;
    box-sizing: border-box;
}

body{
    display:flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  }
  .instagram-logo{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 220px;
    height: 220px;
    box-shadow: -3px 6px 10px #ccc;
    background: #000;
    position:relative;
    border-radius: 50px;
  }
  .camera {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 150px;
    border: 10px solid #FFF;
    border-radius: 32%;   
    position:relative;
  }
  
  .camera:before {
    content: "";
    width: 70px;
    height: 70px;  
    border: 10px solid #FFF;
    border-radius: 50%;
  }
  
.camera:after {
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    left: 100px;
    top: 15px;
    background: #fff;
    border-radius: 50%;
}
  
  .color {
    background: #d6249f;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
  }
  