.about-container {
    width: 100%;
    padding: 50px 0 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #c6f7ff;
   
}

.about-title {
    position: absolute;
    /* defined in styles.css */
    background-color: var(--paragraphBackgroundColor);
    top:-15px;
    left:5%;
    border-radius: 5px;
    padding: 4px 10px;
    font-weight: bold;
    font-size: 23px;
    color: var( --paragraphTitleColor); 
}

.about-paragraph{
    position: relative;
    width:50%;
      /* defined in styles.css */
    background-color: var(--paragraphBackgroundColor);
    border-radius: 5px;
    padding:20px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: medium;
    line-height: 1.75em;
}

@media (max-width: 500px) {
    .about-paragraph{
        width: 80%;
    }
}