* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: #ffe1e7;
}

.container {
    display: grid;
    grid-template-columns: 100px auto 100px;
    grid-template-rows: 200px 100px 150px;
    align-content: start;
    gap: 20px;

    background-color: #fc97b7;
    border: 2px solid #d56989;
    width: 600px;
    height: 500px;
}

.box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    /* height: 100px; */
    background-color: #d1f985;
    border: 2px solid #fefac2;
    border-radius: 5px;
}
.siete{
    font-size: 2rem;
    grid-column: 2 / 4;
    grid-row: 2 / 3;
}
.seis{
    font-size: 2rem;
    grid-column: 2 / 4;
    grid-row: 3 / 4;
}