html, body {
    margin: 0;
    padding: 0;
}
.button {
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    border: 1.2px solid green;
    background-color:rgb(226, 248, 226);
    box-shadow: 2px 2px 2px;
    border-radius: 5px;
    font-size: 1.5em;
    align-items: center;
    box-sizing: border-box;
}

.container {
    position: absolute;
    width: fit-content;
    transition: all 1s;
    left: 5px;
    top: 0px;
}

.display {
    background-color:honeydew;
    border: 2px solid black;
    text-align: right;
    font-size: 1.5em;
}

.title {
    font-family: Arial, Helvetica, sans-serif;
    color: rgb(0, 49, 246);
    font-weight: bold;
    font-size: 1.5rem;
    font-variant: small-caps;
}

.button1 {
    position: absolute;
    bottom: 0px;
}

.b1 {
    background-color: rgb(180, 247, 225);
    border-radius: 5px;
}

.grid-container {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
    background-color:lemonchiffon;
    padding: 10px;
    border: 4px solid rgb(39, 86, 14);
    border-radius: 10px;
    box-sizing: border-box;
    width: fit-content;
}

#box-1, #box-2, #box-3 {
    grid-row: 4/5;
}

#box-4, #box-5, #box-6 {
    grid-row: 3/4;
}

#box-0 {
    grid-row: -2/-3;
}

#box-14 {
    grid-row: -2/-3;
    grid-column: 2/4;
}

#box-10 {
    grid-column: 4/5;
    grid-row: 2/3;
}
#box-11 {
    grid-column: 4/5;
    grid-row: 3/4;
}
#box-12 {
    grid-column: 4/5;
    grid-row: 4/5;
}
#box-13 {
    grid-column: 4/5;
    grid-row: 5/6;
}

#box-15 {
    grid-row: -1/-2;
    grid-column: 1/4;
}

#box-16 {
    grid-column: 1/-1;
    grid-row: 1/2;
}

#box-17, #box-18, #box-19, #box-20 {
    grid-column: -2/-3;
}

#box-21 {
    grid-row: 6/7;
    grid-column: 4/5;
}

#box-22 {
    grid-row: 6/7;
    grid-column: 5/6;
}


#box-23, #box-24, #box-25, #box-26 {
    grid-column: -1/-2;
}

#box-23 {
    grid-row: 2/3;
}

#box-24 {
    grid-row: 3/4;
}

#box-25 {
    grid-row: 4/5;
}

#box-26 {
    grid-row: 5/6;
}