@media screen and (min-width:800px) {
    body {
        height: 100vh;
        width: 100vw;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        font-family: "Karla", sans-serif;
        background-image: url('window.jpg');
        box-sizing: border-box;
    }

    .container {
        width: 49%;
        display: grid;
        grid-template-columns: 3fr 3fr;
        grid-template-rows: 2fr 3fr;
        grid-auto-flow: row;

    }

    .grid-1,
    .grid-2,
    .grid-3 {
        padding-top: 1.5vw;
        padding-left: 3vw;
        padding-right: 2vw;
        padding-bottom: 1vw;
    }

    .grid-1 {
        grid-column: span 2;
        background-color: white;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }

    .grid-2 {
        background-color: hsl(179, 62%, 43%);
        border-bottom-left-radius: 5px;
        color: white;
    }

    .grid-3 {
        background-color: hsl(179, 57%, 50%);
        border-bottom-right-radius: 5px;
        color: white;
        text-align: justify;
    }

    ul li {
        list-style-type: none;
    }

    .grid-1 h3:first-child {
        color: hsl(179, 62%, 43%);
        font-weight: 800;
    }

    .grid-1 p:first-of-type {
        color: hsl(71, 73%, 54%);
        font-weight: bolder;
    }

    .grid-1 p:last-child {
        color: rgb(187, 183, 183);
        line-height: 1.5;
        font-weight: 600;
    }

    .grid-2 span {
        opacity: 0.5;
        font-size: 16px;
    }

    .grid-2 p:nth-child(2) {
        font-size: 30px;
        margin: 1px;
    }

    .grid-2 p:nth-child(3) {
        opacity: 0.9;

    }


    .signup {
        color: white;
        font-weight: bolder;
        font-size: 17px;
        padding: 1vw;
        text-align: center;
        width: 80%;
        background-color: hsl(71, 73%, 54%);
        border: 1px solid grey;
        margin-top: 5%;
        border-radius: 5px;
    }

    .grid-3 p {
        font-weight: 700;
        margin-left: 15%;
    }

    .grid-3 li {
        opacity: 0.7;
        font-size: 14px;
        line-height: 1.5;
    }
}


/*Small Device*/

@media screen and (max-width:799px) {
    body {
        width: 100vw;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-family: "Karla", sans-serif;
        background-image: url('stones.jpg');
        box-sizing: border-box;
    }

    .container {
        width: 49%;
        max-height:50vh;
        display: flex;
        flex-direction: column;
    }

    .grid-1,
    .grid-2,
    .grid-3 {
        padding-top: 1vw;
        padding-left: 2.5vw;
        padding-right: 1.5vw;
        padding-bottom: 1vw;
    }

    .grid-1 {
        background-color: white;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }

    .grid-2 {
        background-color: hsl(179, 62%, 43%);
        color: white;
    }

    .grid-3 {
        background-color: hsl(179, 57%, 50%);
        border-bottom-right-radius: 5px;
         border-bottom-left-radius: 5px;
        color: white;
    }

    ul li {
        list-style-type: none;
    }

    .grid-1 h3:first-child {
        color: hsl(179, 62%, 43%);
        font-weight: 800;
    }

    .grid-1 p:first-of-type {
        color: hsl(71, 73%, 54%);
        font-weight: bolder;
    }

    .grid-1 p:last-child {
        color: rgb(187, 183, 183);
        line-height: 1.5;
        font-weight: 600;
    }

    .grid-2 span {
        opacity: 0.5;
        font-size: 12px;
    }

    .grid-2 p:nth-child(2) {
        font-size: 26px;
        margin: 1px;
    }

    .grid-2 p:nth-child(3) {
        opacity: 0.9;

    }


    .signup {
        color: white;
        font-weight: bolder;
        font-size: 17px;
        padding: 1vw;
        text-align: center;
        width: 80%;
        background-color: hsl(71, 73%, 54%);
        border: 1px solid grey;
        margin-top: 5%;
        border-radius: 5px;
    }

    .grid-3 p {
        font-weight: 700;
        margin-left: 11%;
    }

    .grid-3 li {
        opacity: 0.7;
        font-size: 14px;
        line-height: 1.5;
        margin-left: -10%;
    }

}