/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: #FFD1DC;
  color: #D9558C;
}

@font-face {
font-family: 'BabyDoll';
src: url(https://dl.dropbox.com/s/9km22ye44mczizy/BabyDoll.ttf);

}

#BabyDoll {
font-family: BabyDoll; }


.border {
border: 9px solid; 
border-image: url("https://i.imgur.com/8Tk8PKV.gif") 15 fill round;
} 



.container1 {
  display: inline-block;
  gap: 20px;
    border: 9px solid;
border-image: url("https://i.imgur.com/8Tk8PKV.gif") 7 fill round;
  }
  

 .container {
      display: flex; /* Enables Flexbox for the container */
            column-gap: 20px;
            padding: 10px;
          

    }

    .column {
      flex: 2; /* Makes each column take up equal available space */
      /* Add other styling for your columns here, e.g., background-color, padding */
  
    }

 .img-floatinganim {
animation-name: floating; 
animation-duration: 3s; 
animation-iteration-count: infinite; 
animation-timing-function: ease-in-out;
} 

@keyframes floating { 
0% { 
transform: translate(0,  0px); 
} 

50%  { 
transform: translate(0, 15px); 
} 

100%   {
transform: translate(0, -0px); 
} 
}     

.myImageMask {
-webkit-mask-image: url(https://i.imgur.com/1PjqQS6.png);
-webkit-mask-size: 200%;
-webkit-mask-repeat: no-repeat;
-webkit-mask-position: center;    
} 