

.container{
   display: block;
    
    width: 100%;
    
    
}






#tiktok{
    position: absolute;
    margin-left: 540px;
    margin-top: 100px;
    margin-right: 150px;
    opacity: 50%;
    z-index: 500;
    scale: .8;
    animation: grow-and-shrink .3s;
   
    
    
    
    
}
#tiktok:hover{
    transition: transform .3s;
    transform: scale(1.2);
}


#insta{
    position: absolute;

   
    margin-left: 540px;
    margin-right: 150px;
    margin-top: 250px;
    opacity: 50%;
    scale: .8;
    animation: grow-and-shrink .5s;
    z-index: 400;
    
   
    

}
#insta:hover{
    transition: transform .3s;
    transform: scale(1.2);
}
#ub{
    position: absolute;
    z-index: 600;
    color:antiquewhite;
    scale: 2;

    margin-left: 590px;
    margin-top: 500px;

    opacity: .8;
}















@keyframes grow-and-shrink {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.5);
    }
    100% {
      transform: scale(1);
    }
  }

