:root {
    --color-white: #fff;
    --color-black: #000;
    --color-yellow: #F8F873;
    --color-violet: #6765ae;
  
    --size-max-page-width: 1200px;
    --size-navbar-height: 120px;
  }
  
  @font-face {
    font-family: manrope-medium;
    src: url("../font/Manrope-Medium.ttf");
    font-display: swap;
  }
  @font-face {
    font-family: manrope-regular;
    src: url("../font/Manrope-Regular.ttf");
    font-display: swap;
  }
  @font-face {
    font-family: sora-bold;
    src: url("../font/Sora-Bold.ttf");
    font-display: swap;
  }
  @font-face {
    font-family: sora-semibold;
    src: url("../font/Sora-Semibold.ttf");
    font-display: swap;
  }
  
  * {
    box-sizing: border-box;
    transition: all .375s ease;
    margin: 0;
    padding: 0;
  }
  
  html,
  body {
    margin: 0;
    padding: 0;
    font-size: 10px;
    font-family: manrope;
    background: url("../image/about.jpg") center center no-repeat;
    background-size: cover;
    background-position: top center;
  }
  
  .bling-section {
    position: relative;
  }
  
  .bling-container{
    display: grid;
    position: relative;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    justify-items: center;
    padding: 50px;
    /* max-width: var(--size-max-page-width); */
    gap: 20px;
  }
  
  /* TEXT START */
  .bling-section.text {
    background: #eee;
    min-height: 100px;
  }
  
  .bling-container.text {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 30px 250px;
    min-height: 300px;
  
  }
  
  .bling-container.text h2 {
  font-size: 2.5rem;
  font-family: 'sora-bold';
  text-align: center;
  }
  
  .bling-container.text::before {
    content: "";
    height: 50px;
    background: url("../image/decoration3.png") no-repeat;
    width: 50px;
    background-size: contain;
  }
  
  .bling-container.text::after {
    content: "";
    height: 50px;
    background: url("../image/decoration5.png") no-repeat;
    width: 50px;
    background-size: contain;
  }
  /* TEXT END */
  
  /* New */
  .bling-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: solid 4px #ffff;
    padding: 10px;
    text-align: justify;
    max-width: 100%;
    max-height: 100%;
    line-height: 1.5;
  }
  
  /* New */
  @media only screen and (max-width: 1024px){
    .bling-container.text {
        grid-template-rows: 100px 500px 100px;
        justify-items: center;
        padding: 0px 20px;
        height: 100vh;
    }
  }

  @media only screen and (max-width: 768px){
    .bling-container{
        display: grid;
        grid-template-columns: 1fr;
        position: relative;
        width: 100%;
        margin: 0 auto;
        justify-items: left;
    }

    .bling-container.text {
        grid-template-rows: 100px 500px 100px;
        justify-items: center;
        padding: 0px 20px;
        min-height: 300px;
    }

    .bling-container.text h2 {
        font-size: 2rem;
        font-family: 'sora-bold';
        text-align: center;
    }
  }

  @media only screen and (max-width: 425px){
        .bling-container{
            display: grid;
            grid-template-columns: 1fr;
            position: relative;
            /* align-items: center; */
            width: 100%;
            margin: 0 auto;
            /* max-width: var(--size-max-page-width); */
            justify-items: left;
        }

        .bling-container.text h2 {
            font-size: 1.5rem;
            font-family: 'sora-bold';
            text-align: justify;
        }

        .bling-container.text {
            grid-template-rows: 100px 350px 100px;
            justify-items: center;
            padding: 0px 20px;
            min-height: 300px;
        }
    }
  /* Decoration Start */
  .bg-pp {
    position: absolute;
    width: 30px;
    user-select: none;
  }
  
  .bg-pp.bottom-left {
    bottom: 120px;
    left: 280px;
  }
  
  .bg-pp.top-right {
    top: 120px;
    right: 240px;
  }
  
  .bg-pp.bottom-right {
    bottom: 50px;
    right: 130px;
  }
  
  .bg-pp.top-left {
    top: 0px;
    left: 0px;
  }
  /* Decoration End */
  