/*Reset margin*/
*{
    margin: 0px;
}

.mainbox{
    display: flex;
    flex-direction: row;
    justify-content: center;
    background-color:#60C2FF;
    height: 106px;
}

.blankbox{
    background-color: #D9D9D9;
    flex-shrink: 2;
    width: 129px;
    height: 57px;
    margin: 24px 26px 25px;
}

.content{
    display: grid;
    margin: 24px;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 250px 250px 250px;
    gap: 25px;
}

li{
    list-style-type: none;
}

/*Control all sections*/
section{
    display: flex;
    justify-content:center;
    align-items: center;
    
}

.one{
    background-color: #FF6060;
    
}

.two, .six{
    background-color: #D9D9D9;
    height: 250px;
}

.three, .five{
    background-color: #60C2FF;
}

.four{
    background-color: #FFC260;
}

/*Positioning individual boxes*/
.three{
    grid-row: 1/4;
    grid-column: 3;
    align-items: flex-start;
    padding-top: 85px;
}

.four{
    grid-row: 2;
    grid-column: 1/3;
}

/*Styling*/
h1{
    font-size: 64px;
    color:#ffffff;
}