
.about-wrapper {
    min-height: calc(100vh - var(--header-height));
    text-align: center;
    margin-top: var(--header-height);
    padding: 3rem 0;

}

.about-wrapper .about-item {
    position: relative;
    background-color: var(--main-color);
    padding: 5rem 0;
    width: 50%;
    margin: 2rem auto;
    border-radius: 5px;
    padding: 2rem;
    color: var(--bg-primary);
}
.about-item h3 {
    font-size: 2.4em;
    padding: 1rem;
    font-weight: 600;
}

.about-item P {
    font-size: 18px;
}


@media only screen and (max-width: 1080px) {
    .about-wrapper .about-item {
        width: 90%;
    }

    .about-item P {
        font-size: 16px;
    }
}