/*------------------MAIN SECTION------------------*/
.main
{
    padding: 0 15px;
    container-type: inline-size;
    container-name: main;
}
.main__wrapper
{
    margin: 60px auto;
}

.main__wrapper hr
{
    margin-top: 15px;
    margin-bottom: 50px;
}
.main__wrapper p
{
    color: #231f20;
    line-height: 28px;
    font-size: 18px;
    text-align: justify;
}
.main__wrapper button
{
        background-color: #000;
        color:#fff;
        margin-top: 30px;
        font-size: 24px;
        font-family: sans-serif;
        border: none;
        padding: 10px 18px;
}

.main__img-container
{
    width: 345px;
    margin-top: 35px;
}
.main__img-container img
{
    width: 100%;
}

/*---------MAIN QUERIES-----------*/
@container main (min-width:700px)
{
    .main__wrapper
    {
        width: 65%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr;
        gap: 10px;
    }
    .main__img-container, .main__content
    {
        width: 100%;
        margin: 0;
    }
    .main__img-container img
    {
        height: 100%;
        object-fit: contain;
    }

}

/*---------FOOTER SECTION-----------*/
.footer
{
    container-name: footer;
    container-type: inline-size;
    background-color: #231f20;
}
.footer__wrapper
{
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: space-evenly;
    padding-top: 30px;
}
.footer__item
{
    margin: 10px auto;
    color: #fff;
    font-family: 'Zilla Slab';
    font-size: 15px;
    width: 93%;
}
.footer__item p
{
    color: #fff;
    font-size: 14px;
    line-height: 1.2;
    margin-top: 5px;
    margin-bottom: 10px;
}
.footer__item img
{
    object-fit: contain;
    width: 100%;
    max-height: 60px;
}
.footer__item img#creators
{
    max-height: 100px;
}

/*---------FOOTER QUERIES-----------*/
@container footer (min-width: 700px)
{
    .footer__wrapper
    {
        flex-direction: row;
    }
    .footer__item
    {
        flex-basis: 0;
        flex-grow: 1;
    }
    .footer__item#footer__item-text
    {
        width: 100%;
        flex-basis: 0;
        font-size: 16px;
        flex-grow: 2;
    }
}