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