/* 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." */
html, body {
            height: 100%; /* or height: 100vh; for viewport height */
        }
body {
  background-color: #F2C7DB;
  color: #E07EAB;
}

@font-face {
font-family: 'BaksoSapi';
src: url(https://dl.dropbox.com/s/je9lxptdn41ri45/BaksoSapi.otf);

}

.BaksoSapi {
font-family: BaksoSapi;
font-size: 9px;
}

p.round2 {
  border: 6px dotted #C45274;
  border-radius: 20px;
  padding: 5px;
  margin: 10px;
  width: 20%;
}

.whitey { 
border-width: 7px; 
border-style: solid;
border-image: url("https://i.imgur.com/8xftJ3v.gif") 7 fill round;
width:30%;
padding: 5px;
height:auto;
border-radius:10px;
} 

.container {
  display: grid;
  padding: 5px;
  gap: 20px; /* Adds space between columns */
  justify-content: space-between; /* Distributes items horizontally */
  align-items: flex-start; /* Aligns items vertically */
   grid-template-columns: repeat(3, 1fr); 
  gap: 10px; /* Adds space between grid items */
}
.container > div {
  border: 7px whitey;
  text-align: center;
}


