html, body {
    margin: 0;
}

h1 {
    color: blue;
}

.wrapper {
    /* margin: 0 auto; */
    /* max-width: 1200px;  */
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    text-align: center;
    /* justify-content: space-between; */
/* 

    max-width: 1200px;
    justify-content: center; */
}
 
.grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-column-gap: 5px;
    width: 900px;

    border: 1px solid red;
}

.grid-col {
    border: 1px solid green;
    height: 100px;
    
}