* {
    margin: 0;
    box-sizing: border-box;
}

body,
html {
    background-color: #F4F0E5;
}

main {
    display: grid;
    /* grid-template-columns: repeat(3, 1fr); */
    gap: 24px;
}

main>a>img {
    border-radius: 12px;
    max-width: 100%;
    max-height: 100%;
}

h1,
h2 {
    font-family: "Special Gothic Expanded One", sans-serif;
    font-weight: 400;
    font-style: normal;
}

h2 {
    grid-column: 1 / 3 span;
}

iframe {
    height: 436px;
}

@media only screen and (max-width:600px) {

    main,
    h1 {
        margin: 0 12px;
        width: calc(100% - 24px);
    }


    h2 {
        grid-column: 1;
    }

    main {
        grid-template-columns: 1fr;
    }
}

@media only screen and (min-width:600px) {

    main,
    h1 {
        margin: 0 12px;
        width: calc(100% - 24px);
    }


    h2 {
        grid-column: 1 / 2 span;
    }

    main {
        grid-template-columns: 1fr 1fr;
    }
}


@media only screen and (min-width:1024px) {

    main,
    h1 {
        width: 1024px;
        margin: 2rem auto;
    }

    h2 {
        grid-column: 1 / 3 span;
    }

    main {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 24px;

    }
}