/* General styling for the container and background image */
.container {
    position: relative;
    height: 100vh;
  }
  
  .background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/test.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
  }
  
  /* Additional styling for the icon-text elements */
  .icon-text {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    color: black;
    justify-content: center;
  }
  
  .icon-text i {
    font-size: 1.5rem;
    margin-bottom: 30px;
    margin-right: 20px;
  }
  
  /* Media query for screens under 600px */

  
  @media (max-width: 600px) {
    .icon-text i {
      margin: 0px;
    }
  }


  


  @media (max-width: 600px) {
    .container {
      padding-top: 50px;
      text-wrap: wrap;
    }
  }


  @media (max-width: 600px) {
    .icon-text {
      text-wrap: wrap;
      font-size: 25px;
      flex-direction: column;
      margin-bottom: 20px;
      width: 200px;
    }
  }

  