@media (min-width: 922px) {
    .site-content .ast-container {
        display: flex;
        justify-content: center;
        background-color: #f6f1eb;
    }
}
@media (min-width: 922px) {
    .ast-container {
        max-width: 3252px;
    }
}
h1{
    margin-bottom: 30px;
}
.about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px;
    margin: 50px;
    width: 75%;
}

.about img {
    width: 60%;
    border-radius: 35px;
    margin-bottom: 20px;
}

.about p {
    width: 75%;
    border: 1px solid #333333;
    border-radius: 35px;
    padding: 20px;
    font-size: 20px;
    color: #1a1a1a;
}

/* Responsive for tablets */
@media (max-width: 1024px) {
    .about {
        width: 85%;
        padding: 30px;
        margin: 30px;
    }

    .about img {
        width: 70%;
    }

    .about p {
        width: 85%;
        font-size: 18px;
        padding: 15px;
    }
}

/* Responsive for mobile phones */
@media (max-width: 768px) {
    .about {
        width: 95%;
        padding: 20px;
        margin: 20px;
    }

    .about img {
        width: 90%;
    }

    .about p {
        width: 95%;
        font-size: 16px;
        padding: 10px;
    }
}
