
section{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: 100vh;
}
h1{
    
    color: rgb(0, 190, 253); 
    
    text-align: center; 
    letter-spacing: 2px; 
    margin: 20px 0; 
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); 
}
.container{
    
    display: grid;
    grid-template-columns: repeat(4,90px);
    grid-template-rows: repeat(6,80px);
    justify-content: center;
    border: solid;

}
.container div{
    border: solid 1px;
    text-align: center;
}

.div-black{
    grid-column: 1/5;
    grid-row: 1/2;
    background-color: black;
}
.div-c{
    grid-column: 1/3;
    grid-row: 2/3;
    background-color: aqua;
}
.div-0{
    grid-column: 1/3;
    grid-row: 6/7;
}
