/* Big Computer */
@media screen and (min-width: 1024px) {

    h1 {
        display: flex;
        justify-content: center;

        font-family: "Dancing Script", cursive;
        font-optical-sizing: auto;
        font-style: normal;
        font-weight: 515;
        font-size: 96px;
    }

    #mainbox {
        display:grid;
        grid-template-areas: 
        "area1 area2 area3 area4 area5 area6"
        "area7 area8 area9 area10 area11 area12";
        gap: 10px;
        margin-left: 5%;
        border: 3px solid black;
        border-radius: 10px;
        padding: 10px;
        margin-right: 5%;
    }

    #sidebox {
        display:flex;
        flex-direction: column;
        text-align: center;
        margin-right: auto;
        margin-left: auto;
        border: 3px solid black;
        border-radius: 10px;
        padding: 10px;
        width: 90%;

    }

    h2 {
        display: flex;
        justify-content: center;
        text-align: center;
        margin-right: auto;
        margin-left: auto;

        font-family: "Dancing Script", cursive;
        font-optical-sizing: auto;
        font-style: normal;
        font-weight: 515;
        font-size: 32px;
    }

    #sidebox > img {
        width: 25%;
        border-radius: 10px;
        margin-left: 37%;
    }

}



/* small phone */
@media screen and (max-width: 411px) {

   h1 {
        display: flex;
        justify-content: center;

        font-family: "Dancing Script", cursive;
        font-optical-sizing: auto;
        font-style: normal;
        font-weight: 515;
        font-size: 64px;
    }

    #mainbox {
        display:grid;
        grid-template-areas: 
        "area1"
        "area2"
        "area3"
        "area4"
        "area5"
        "area6"
        "area7"
        "area8"
        "area9"
        "area10"
        "area11"
        "area12";
        gap: 10px;
        margin-left: 5%;
        border: 3px solid black;
        border-radius: 10px;
        padding: 10px;
        margin-right: 5%;
    }

    #mainbox > section {
        display: flex;
        justify-content: center;
    }

    #sidebox {
        display:flex;
        flex-direction: column;
        text-align: center;
        margin-right: auto;
        margin-left: auto;
        border: 3px solid black;
        border-radius: 10px;
        padding: 10px;
        width: 90%;

    }

    h2 {
        display: flex;
        justify-content: center;
        text-align: center;
        margin-right: auto;
        margin-left: auto;

        font-family: "Dancing Script", cursive;
        font-optical-sizing: auto;
        font-style: normal;
        font-weight: 515;
        font-size: 32px;
    }

    #sidebox > img {
        width: 75%;
        border-radius: 10px;
        margin-left: 12%;
    }

    iframe {
        width: 300px;
        height: 225px;
    }

}



/* medium tablet */
@media screen and (min-width: 810px) and (max-width: 1023px) {

    h1 {
        display: flex;
        justify-content: center;

        font-family: "Dancing Script", cursive;
        font-optical-sizing: auto;
        font-style: normal;
        font-weight: 515;
        font-size: 64px;
    }

    #mainbox {
        display:grid;
        grid-template-areas: 
        "area1"
        "area2"
        "area3"
        "area4"
        "area5"
        "area6"
        "area7"
        "area8"
        "area9"
        "area10"
        "area11"
        "area12";
        gap: 10px;
        margin-left: 5%;
        border: 3px solid black;
        border-radius: 10px;
        padding: 10px;
        margin-right: 5%;
    }

    #mainbox > section {
        display: flex;
        justify-content: center;
    }

    #sidebox {
        display:flex;
        flex-direction: column;
        text-align: center;
        margin-right: auto;
        margin-left: auto;
        border: 3px solid black;
        border-radius: 10px;
        padding: 10px;
        width: 90%;

    }

    h2 {
        display: flex;
        justify-content: center;
        text-align: center;
        margin-right: auto;
        margin-left: auto;

        font-family: "Dancing Script", cursive;
        font-optical-sizing: auto;
        font-style: normal;
        font-weight: 515;
        font-size: 32px;
    }

    #sidebox > img {
        width: 75%;
        border-radius: 10px;
        margin-left: 12%;
    }
    
    iframe {
        width: 400px;
        height: 300px;
    }


}