#iframe-swap {
    width: 80%;
    height: 100vh;
    max-height: 1000px;
    margin: 0 auto 50px;
    border: 0;
    box-shadow: 0 0 10px 10px rgb(16 22 28 / 30%);
}
.row-center {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
.pancake-btn {
    width: 200px;
    height: 200px;
}
.brand-text{
    font-family: 'Dosis', sans-serif;
}
.stats-container{
    margin: 0 0 100px 0;
}

.photo{
    width: 400px;
    height: 400px;
    display: block;
  }
  
  .photo img{

    object-fit: cover;
   
    
    display: block;
    transition: all .5s cubic-bezier(0.645, 0.045, 0.355, 1);
    margin-top: -10px;
  }
  
  .photo:hover img{
    box-shadow: 1px 1px 10px 0 rgba(0,0,0,.1);
  }
  
  .photo .glow-wrap{
    overflow: hidden;
    position: absolute;
    width: 400px;
    height: 400px;
    top: 0;
    margin-top: 40px;
  }
  
  .photo .glow{
    display: block;
    position:absolute;
    width: 40%;
    height: 200%;
    background: rgba(255,255,255,.2);
    top: 40px;
    filter: blur(5px);
    transform: rotate(45deg) translate(-450%, 0);
    transition: all .5s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  
  .photo:hover .glow{
    transform: rotate(45deg) translate(450%, 0);
    transition: all 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  
  .photo:hover img,
  .photo:hover .glow-wrap{
    margin-top: 40px;
  }