.grid{
display: grid;
grid-template-columns: auto auto;
max-width: 60%;
background-color: #b6deee;
height: 300px;
}
.grid > div{
align-self: stretch;
background-color:#2889df;
width: 90%;
margin: 20px;
display: flex;
justify-content: center;
align-items: center;
color: white;
}