@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');

body {
    background-color: #F2ECE2;
}

.container {
    max-width: 1100px;
}

.item-page {
    margin-top: 50px;
    margin-bottom: 50px;
    background-color: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);

    .img-holder {
        padding: 80px;
        padding-bottom: 0;
        display: flex;
        justify-content: center;

        @media screen and (max-width: 576px) {
            padding: 40px;
            padding-bottom: 0;
        }

        img {
            max-width: 100%;
            width: 283px;
        }
    }

    #content {
        padding: 20px;
        text-align: center;

        @media screen and (max-width: 576px) {
            padding: 25px;
        }

        h1 {
            margin-top: 0;
            font-size: 40px;
            line-height: 48px;
            font-weight: 700;
            color: #415100;
            text-align: center;

            @media screen and (max-width: 576px) {
                font-size: 32px;
                line-height: 40px;
            }
        }

        p {
            font-size: 16px;
            line-height: 24px;
            margin-bottom: 20px;
            font-weight: 400;
        }

        iframe {
            margin-top: 20px;
            margin-bottom: 80px;
            max-width: 800px;
            border-radius: 20px;

            @media screen and (max-width: 576px) {
                margin-top: 25px;
                margin-bottom: 0;
            }
        }
    }
}
