body {
  margin: 0;
  padding: 40px;

  background-image: url("fondo.jpg");
  background-repeat: repeat;
  background-size: 300px;
}


   

.layout {
    max-width: 1000px;
    margin: auto;
}

.fila {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.bloque {
    background-color: #bfbfbf; /* gris boceto */
}

/* laterales */
.lateral {
    width: 180px;
    height: 500px;
}

/* centro */
.centro {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.arriba {
    width: 440px; /* más ancho */
    height: 150px; /* más alto */
    margin-bottom: 40px; /* más separación */
}
.chiquitos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px; /* más separados */
}

.chico {
    width: 200px; /* más grandes */
    height: 150px;
}
.box {
  background-color: #e0e0e0; /* el gris de adentro */
  padding: 25px;

  border: 30px solid transparent;
  border-image: url("encaje.png") 30 round;

  box-sizing: border-box;
}


