/* 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;
    }

    .bigBox{
        width: 360px;
        height: 460px;
        background-color: #E5E5E5;
        margin-left: auto;
        margin-right: auto;
        border-radius: 30px;
        border: 3px solid #D5D5D5;
    }

    .grid-2{
        display: grid;
        grid-template-columns: auto auto;
        text-align: center;
    }

    .submitButton{
        background-color: #8FC042;
        border: none;
        color: white;
        padding: 10px 10px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        border-radius: 30px;
        border: 3px solid #7CA639;
    }
}

/* 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;
    }
	
	.bigBox{
        width: 535px;
        height: 705px;
        background-color: #E5E5E5;
        margin-left: auto;
        margin-right: auto;
        border-radius: 30px;
        border: 3px solid #D5D5D5;
    }

    .grid-2{
        display: grid;
        grid-template-columns: auto auto;
        text-align: center;
    }

    .submitButton{
        background-color: #8FC042;
        border: none;
        color: white;
        padding: 10px 10px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        border-radius: 30px;
        border: 3px solid #7CA639;
    }
}

/* 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;
    }

    .grid-3{
        display: grid;
        grid-template-columns: auto auto auto;
        text-align: center;
        margin-left: 20px;
        margin-right: 20px;
    }

	.bigBox{
        width: 95%;
        height: 705px;
        background-color: #E5E5E5;
        margin-left: auto;
        margin-right: auto;
        border-radius: 30px;
        border: 3px solid #D5D5D5;
    }

    .grid-2{
        display: grid;
        grid-template-columns: auto auto;
        text-align: center;
    }

    .submitButton{
        background-color: #8FC042;
        border: none;
        color: white;
        padding: 10px 10px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        border-radius: 30px;
        border: 3px solid #7CA639;
    }
}

/* 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;
    }

    .grid-3{
        display: grid;
        grid-template-columns: 33.3% 33.3% 33.3%;
        text-align: center;
    }

	.bigBox{
        width: 70%;
        height: 705px;
        background-color: #E5E5E5;
        margin-left: auto;
        margin-right: auto;
        border-radius: 30px;
        border: 3px solid #D5D5D5;
    }

    .grid-2{
        display: grid;
        grid-template-columns: 60% 22%;
        text-align: center;
    }

    .submitButton{
        background-color: #8FC042;
        border: none;
        color: white;
        padding: 10px 10px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        border-radius: 30px;
       
}