 /* ABOUT PAGE */

 body
 {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   scroll-behavior: smooth;
   background-color: #f9f9f9;
 }


 .about-section{
    align-items: center;
    max-width: 1200px;
    justify-content: center;
    padding-top: 15%;
    padding-left: 200px;
    background-color: #f9f9f9;
  }
  
  
  
  .about-img{
    box-sizing: border-box;
    display: block;
    float: right;
  }
  
  .about-text {
    max-width: 100;
  }

  .about-text h2{
    padding-bottom: 10px;
    color: blueviolet;
    font-size: 30px;
    font-family: video, serif;
  }

  .about-text h1 {
    padding-bottom: 10px;
    color: #191D88;
    font-size: 25px;
    font-family: "bree-serif", serif;
  }

  .about-text p {
    padding-bottom: 10px;
    font-size: 20px;
    font-family: "bree-serif", serif;
    font-weight: 200;

  }

  @media(max-width: 1200px){
    .about-img{
        float: none;
    }
    .about-text p{
        max-width: 500px;
    }
  }