main{
    min-height: 70vh;
}

.about-wrap {
    position: relative;
    height: 100%;
    min-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--fg-color);
}

.about-wrap>img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    opacity: 0.1;
}

.section-about {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 160px 0 90px 0;
}

.section-about>h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 80px;
}

.section-about>p {
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
    opacity: 0.8;
    letter-spacing: 0.5px;
}

.section-about>img {
    width: 40px;
    height: 40px;
    margin-top: 80px;
    border-radius: 8px;
}

@media screen and (max-width: 600px) {
    .section-about {
        padding: 80px 0;
    }

    .section-about>h2 {
        font-size: 24px;
    }

    .section-about>p {
        font-size: 15px;
    }
}