.container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 25px;
    box-shadow: 5px 5px 10px gray;
    /* padding: 20px; */

}
body {
    font-family: "Poppins", sans-serif;
    

}

.box {
    height: 200px;
    width: 100px;
    align-content: center;
    text-align: center;



}

@media(min-width:0px)and (max-width:600px) {
    .container {
        display: grid;
        flex-direction: column;
        padding: 20px;
        justify-content: center;
        align-items: center;
       grid-template-columns: 1fr 1fr;
        box-shadow: 5px 5px 10px gray;      
        border-radius: 20px;
        gap: 20px;

    }

    .box {
        box-shadow: 5px 5px 10px rgb(9, 96, 83);
        border: solid rgb(52, 55, 49);
        width: 150px;
        height: 150px;
    }
    .h1{
        display: flex;
        justify-content: left;
    }
}

@media(min-width:601px)and (max-width:768px) {
    .container {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;

        /* background-color: rgb(190, 237, 221); */
        border-radius: 20px;
        gap: 30px 20px;
        padding: 20px;
        justify-content: center;
        align-items: center;
        
    }
    .box {
        box-shadow: 5px 5px 10px rgb(35, 5, 225);
        border: solid rgb(84, 41, 41);
        width: 150px;
        height: 150px;
    }
      .h1{
        display: flex;
        justify-content: center;
    }
}



@media(min-width:769px)and (max-width:1500px) {
    .container {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
        /* background-color: rgb(228, 202, 162); */
        border-radius: 20px;
        gap: 30px;
        padding: 20px;
        justify-content: center;
        align-items: center;
    }
    .box {
        box-shadow: 5px 5px 10px rgb(192, 5, 154);
        border: solid rgb(45, 54, 10);
        width: 150px;
        height: 150px;
    }
      .h1{
        display: flex;
        justify-content: end;
    }
}

