.about {
    background: var(--blue-300);
    display: flex;
    justify-content: center;
    padding: 64px 0;
}

.about div {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 38px;
}

.about p {
    width: 751px;
    line-height: 19px;
}

.about img {
    margin-top: 20px;
    width: 250px;
    margin-left: -30px;
    filter: drop-shadow(0px 0px .5px black);
    opacity: 80%;

}

@media screen and (min-width: 0) {
    .about {
        padding: 64px 10px;
        width: 100vw;
    }

    .about div {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
        max-width: 1136px;
    }

    .about p {
        width: 100%;
        line-height: 19px;
    }
}

@media screen and (min-width: 768px) {
    .about {
        padding: 64px 34px;
        width: 100vw;
    }
}

@media screen and (min-width: 1024px) {

}

@media screen and (min-width: 1170px) {
    .about {
        padding: 64px 0;
        width: 99.2vw;
    }

}
