*{
    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(6, 1fr);
    gap: 20px;
    margin: 100px 150px;
    height: 70vh;

}
.child{
    border: 1px solid black;
}





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

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

    }

.img-2{
    width:165px

}