*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    font-size: 62.5%;
}

body{
    background-color: #2c3043;
}


.red{
    background-color: #fc6057;
}
.orange{
    background-color: #fd825c;
}
.yellow{
    background-color: #fda061;
}

.green{
    background-color: #01a787;

}
.sea-green{
    background-color: #1bc1a1;
}

.light-green{
    background-color: #34daba;
}


.parent{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4,50px);
    margin: 100px 150px ;
    gap: 10px;
    height: 70vh;
}



#box1{
    grid-column: 1/3;
}
#box8{
    grid-column: 1/3;
    grid-row: 3/5;
}

#box13{
    grid-column: 1/4;
    height: 50px;
    
}
#box14{
    height: 50px;


}

@media(max-width: 1000px){
    .parent{
        margin: 50px 50px;
        grid-template-columns: repeat(1, 1fr);
        }
        #box1,#box8 ,#box13{
            grid-row: auto;
            grid-column: auto;
        }

}
.next{
  text-align: center;
  /* margin-bottom: 40px; */

    }

.img-2{
    width:165px

}