.about {
    padding-top: 160px;
}

.about h2{
    color: #00B0E8;
    font-family: 'typo-speed';
    font-size: 1.75rem;
    text-align: center;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    grid-gap: 20px;
}

.about-content p{
    font-family: 'Cabin', sans-serif;
    opacity: .8;
    text-align: center;
    margin-top: 40px;
    line-height: 1.75em;
    font-size: 1.125rem;
}

.about-content-img {
    display: grid;
    justify-content: end;
    align-items: center;
}

@media only screen and (min-width:430px) and (max-width:760px) {

    .about h2 {
        line-height: 1.2em;
    }

    .about-content p {
        font-size: 1rem;
    }
    
}
@media only screen and (min-width:310px) and (max-width:429px) {

    .about h2 {
        font-size: 1.2rem;
        line-height: 1.2em;
    }

    .about-content p {
        font-size: .9rem;
    }
    
}
@media only screen and (min-width:0px) and (max-width:309px) {

    .about h2 {
        font-size: 1rem;
        line-height: 1.2em;
    }

    .about-content p {
        font-size: .8rem;
    }
    
}