@import url('https://fonts.googleapis.com/css?family=Sofia');
@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&family=Bigelow+Rules&family=Fredericka+the+Great&family=Google+Sans+Code:ital,wght,MONO@0,300..800,1;1,300..800,1&family=Pixelify+Sans:wght@400..700&family=Playwrite+NZ+Basic+Guides&family=Reenie+Beanie&display=swap');

body{
  background-image: url('/deco-imgs/fondo5.jpg');
  background-size: cover;           /* or 'contain', or a specific size */
  background-position: center;      /* controls where it anchors */
  background-attachment: fixed;    /* optional: keeps it fixed while scrolling */
}
h1{
  padding-left:30px;
  color: #21DEC8;
  font-family: "Fredericka the Great", serif;
  font-size: 55px;
  font-weight: bold;
  font-style: normal;
}
p{
  text-align: center;
  color: white;
  padding-left: 50px;
  font-family: "Reenie Beanie", cursive;
  font-weight: bold;
  font-size: 40px;
}
.index-top-bg{
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-image: url('/deco-imgs/fondoo2.jpg');
  background-size: cover;
  background-position: center;  /* ← add this */
  background-repeat: no-repeat; /* ← and this */
  width: 100%;
  height: 300px;
  padding: 0 40px;
  box-sizing: border-box;
}
.index-top-bg img {
  z-index: 2;
  position: relative;
}
.three-columns {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 40px;
  box-sizing: border-box;
}

.column {
  flex: 1;  /* ← each column takes equal space */
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;  /* ← prevents columns from overflowing */
}