main {
    font-family: "DM serif display", serif;
    color: #000000;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.heading {
    font-size: 3em;
    font-weight: bold;
    text-align: center;
    margin-top: 250px;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    max-width: 1200px;
    margin: 20px 0;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
}

.column {
    flex: 1;
    padding: 20px;
    text-align: center;
}

.column h2 {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.column p {
    font-size: 1em;
    line-height: 1.5;
    text-align: justify;
}

.picture {
    width: 100%;
    height: 300px;
    border: 2px solid #000;
    border-radius: 10px;
    overflow: hidden;
}

.picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        width: 90%;
    }

    .column {
        padding: 10px;
    }

    .column h2 {
        font-size: 1.2em;
    }

    .column p {
        font-size: 0.9em;
    }

    .picture-column {
        order: -1;
    }

    .text-column {
        order: 0;
    }
}

@media (max-width: 480px) {
    .container {
        width: 100%;
        padding: 10px;
    }

    .column h2 {
        font-size: 1em;
    }

    .column p {
        font-size: 0.8em;
    }
}

footer {
    margin-top: 40px;
}