body {
    background: radial-gradient(circle, rgb(11, 11, 20), rgb(29, 35, 55));    
    min-height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  @keyframes glowinout-less {
    50% {
      filter: drop-shadow(1 0 13px yellow);
    }
  }
  
  @keyframes glowinout {
    50% {
      filter: drop-shadow(5px 5px 50px yellow);
    }
  }
  
  
  
  .glowing-image{
   
    animation: glowinout-less 1.6s linear infinite;
  }

  @media( min-width: 768px){
    .text-content{
      padding-left: 120px;
    }
  }

  @media(max-width: 767px){
    .text-content{
      padding-top: 50px;
    }
  }

  @media(max-width: 564px){
    .text-content{
      padding-top: 30px
    }
  }

  





