 
    body
    {
      margin:0;
      padding:0;
      background-image: url(images/bg3.jpg);
      background-size: 100%;
      font-family: sans-serif;
      
      
    }
    h1, h2{
      color: white;
      font-family: bignoodletitling;
    
    }
    .container{
      position: relative;
      top: 50%;
      width: 1280px;
      margin:70px auto 0;
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      
    }
    .container .box{
      position: relative;
      top: 50%;
      width: 300px;
      height: 300px;
      background:transparent;
      margin: 50px;
      box-sizing: border-box;
      display: inline-block;
    
    }
    .container .box .imgBox {
      position: relative;
      overflow: hidden;
    }
    .container .box .imgBox img{
      max-width: 100%;
      transition: transform 2s;
      border-radius: 20%;
    }
    .container .box:hover  .imgBox {
          transform: scale(1.2);
    }
   