body {
    background-color: aliceblue;
}
.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Dos columnas con igual ancho */
    gap: 20px; /* Espacio entre las celdas */
    padding: 20px;
}

.grilla1 {
    border: 1px solid #ddd;
    padding: 20px;
    text-align: center;
    background-color: white;
}
.img1 {
    height: 400px;
    width: 450px;
}
.grilla2 {
    border: 1px solid #ddd;
    padding: 20px;
    text-align: center;
    background-color: white;
}
.grilla3 {
    border: 1px solid #ddd;
    padding: 20px;
    text-align: center;
    background-color: white;
}
.img3 {
    height: 400px;
    width: 600px;
}
.grilla4 {
    border: 1px solid #ddd;
    padding: 20px;
    text-align: center;
    background-color: white;
}
.img4 {
    height: 400px;
    width: 400px;
}
.boton {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #fcfcfc;
    color: #000000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 5px;
}
h1 {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 40px;
}
p {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 20px;
}