/* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Apply grid layout to grid-container */
.grid-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 460.5px) minmax(0,460.5px) minmax(0, 1fr); /* four columns */
    grid-template-rows: 84px 1056px 400px 60px; 
}


.div2{
    grid-row: 1/2;
    grid-column: 1/5;
    background-color: rgb(165, 87, 218);
}
.div1{
    grid-row: 1/2;
    grid-column: 2/3;
    background-color: rgba(32, 37, 37, 0.5);
  
}
.div3{
    grid-area: 2/1/3/5;
    background-color: rgb(105, 240, 111);
}
.div4{
    grid-area: 2/2/3/4;
    background-color: rgba(226, 226, 199, 0.5);
}
.div5{
    grid-area: 3/1/4/5;
    background-color: rgb(209, 143, 43);
}
.div6{
    grid-area: 3/2/4/4;
    background-color: rgb(235, 50, 136, 0.5);
}
.div7{
    grid-area: 4/1/5/5;
    background-color: rgb(105, 94, 43);
}
