/* Main container styling */
.main {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80vh;
    text-align: left;
    color: #ffffff;
    padding: 20px;
    gap: 100px;
    flex-wrap: wrap;
  }
  
  /* Content styling */
  .content {
    max-width: 50%;
  }
  
  /* Headings and paragraph styling */
  .main h2 {
    font-size: 1.6rem;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
  }
  
  .main h1 {
    font-size: 6em;
    margin: 5px 0;
    font-weight: bold;
  }
  
  .main p {
    font-size: 1.5em;
    color: #cccccc;
  }
  
  /* Button styling */
  .button-group {
    display: flex;
    gap: 20px;
    margin-top: 20px;
  }
  
  .button {
    background-color: #8ccf8c;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
  }
  
  .button:hover {
    background-color: #72b572;
  }
  
  /* Image styling */
  .main-image {
    height: 400px;
    width: 400px;
    border-radius: 50%;
    margin-left: 20px;
    border: 3px solid #8ccf8c;
    object-fit: cover;
    
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .main {
      flex-direction: column-reverse; /* Stack image on top by reversing order */
      text-align: center;
      padding: 20px;
      gap: 20px;
    }
  
    .content {
      max-width: 100%;
    }
  
    .main h1 {
      font-size: 2.5em;
    }
    
    .main p {
      font-size: 1em;
    }
    
    .main-image {
      height: 250px; /* Adjust size for mobile */
      width: 250px;
      margin: 0 0 20px 0; /* Add margin below the image */
    }
  }
  
  @media (max-width: 480px) {
    .main h1 {
      font-size: 2em;
    }
    
    .button-group {
      flex-direction: column;
      gap: 10px;
    }
    
    .button {
      padding: 8px 16px;
    }
    
    .main-image {
      height: 200px;
      width: 200px;
    }
  }
  .music-icon {
    height: 30px; /* Adjust height as needed */
    vertical-align: middle; /* Align icon vertically with text */
    margin-left: 5px; /* Optional: add space between text and icon */
  }
  