main a {
    color: black;
    font-weight: var(--fw-medium);
    font-size: var(--fs-small);
}

.content {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    align-items: center;
}

.title{
    grid-column: 1 / 3;
    text-align: center;
}

p {
    max-width: 700px;
}

.image{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-inline: 2rem;
    gap: .5rem;
}

.shari {
    max-width: 450px;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: .5rem;
}

.text {
    display: grid;
    gap: 1rem;
}

@media screen and (max-width: 1300px){
    .content{
        flex-direction: column;
        align-items: center;
    }
    .us {
        width: 80vw;
    }      
    .text {
        margin-inline: 2rem;
    }
}

@media screen and (max-width: 500px){
    .content {
        gap: 2rem;
    }
}