/* 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." */
@font-face {
  font-family: 'sitelen seli kiwen juniko';
  src: url('sitelenselikiwenjuniko.ttf') format('truetype');
}
p {
  font-size: 24px;
}
body {
  background-color: white;
  color: black;
  font-family: 'sitelen seli kiwen juniko';
  font-size: 24px;
  background-image: url(images/background.png);

}

.box {
  display: grid;
  grid-template-columns: auto auto auto;
  padding: 10px;
}

.box div {
  background-color: #f1f1f1;
  border: 1px solid black;
  padding: 10px;
  font-size: 30px;
  text-align: center;
}

.box div img {
  width: 25%; 
  height: auto;
}

.note {
  position: relative;
  text-align: center; 
  color: black; 
}

.note img {
  width: 25%; 
  height: auto;
}

.text-overlay {
  position: absolute;
  top: 50%; 
  left: 50%; 
  transform: translate(-50%, -50%); 
}