/* Colors */
:root {
    --color-default: #f7e120;
    --color-primary: #dc3545;
    --color-black: rgb(12, 12, 12);
    --color-white: #fff;
  }

  .about-bg-img{
    width: 100%;
    height: 40vh;
   
    background-image: linear-gradient(#09090982,#0b0b0b8a),url(../images/logo_make_11_06_2023_114.jpg);
    background-size: cover;
    background-position-y: center;
  }
  .about-bg-img h1{
    margin-top: 50px;
    color: var(--color-white);
    font-size: 60px;
    text-transform: uppercase;
    font-weight: bold;
  }

  @media screen and (max-width: 900px) {
    .about-bg-img h1{
        font-size: 32px;
    }
    
  }