/* mobile */
@media screen and (max-width: 600px) {
    * {
        padding: 0px;
        margin: 0px;
        box-sizing: border-box;
    }
    body {
        width: 100%;
    }

    .grid-4{
        display: grid;
        grid-template-columns: auto auto auto auto;
        text-align: center;
    }

    .box1{
        width: 70px;
        height: 60px;
        background-color: #EDEDED;
        margin-left: auto;
        margin-right: auto;
        border-radius: 10px;
    }

    .box1IMG{
        width: 38px;
        height: 36px;
    }

    /* new stuff */

    .telefon{
        display: block;
        text-align: center;
    }

    .tableta{
        display: none;
    }

    .PC{
        display: none;
    }
    
}

/* tableta */
@media (min-width: 601px) and (max-width: 768px) {
    * {
        padding: 0px;
        margin: 0px;
        box-sizing: border-box;
    }

    body {
        width: 100%;
    }

    .grid-4{
        display: grid;
        grid-template-columns: auto auto auto auto;
        text-align: center;
    }

    .box1{
        margin-top: 20px;
        width: 90px;
        height: 80px;
        background-color: #EDEDED;
        margin-left: auto;
        margin-right: auto;
        border-radius: 10px;
    }

    .box1IMG{
        width: 45px;
        height: 47px;
    }

    /* new stuff */ 
    .telefon{
        display: none;
    }

    .tableta{
        display: block;
        text-align: center;
    }

    .PC{
        display: none;
    }
    
}

/* laptop mic */
@media (min-width: 769px) and (max-width: 1024px) {
    * {
        padding: 0px;
        margin: 0px;
        box-sizing: border-box;
    }

    body {
        width: 100%;
    }
    
    .grid-4{
        margin-left: 20%;
        display: grid;
        grid-template-columns: 20% 20% 20% 20%;
        text-align: center;
    }

    .box1{
        margin-top: 20px;
        width: 115px;
        height: 95px;
        background-color: #EDEDED;
        margin-left: auto;
        margin-right: auto;
        border-radius: 10px;
    }

    .box1IMG{
        width: 60px;
        height: 64px;
    }

    /* new stuff */
    .telefon{
        display: none;
    }

    .tableta{
        display: none;
    }

    .PC{
        display: block;
        text-align: center;
    }
}

/* ecran mare */
@media only screen and (min-width: 1025px){
    * {
        padding: 0px;
        margin: 0px;
        box-sizing: border-box;
    }

    body {
        width: 100%;
    }

    .grid-4{
        margin-left: 25%;
        display: grid;
        grid-template-columns: 17% 17% 17% 17%;
        text-align: center;
    }

    .box1{
        margin-top: 20px;
        width: 130px;
        height: 100px;
        background-color: #EDEDED;
        margin-left: auto;
        margin-right: auto;
        border-radius: 10px;
    }

    .box1IMG{
        width: 60px;
        height: 64px;
    }

    /* new stuff */
    .telefon{
        display: none;
    }

    .tableta{
        display: none;
    }

    .PC{
        display: block;
        text-align: center;
    }
}