.background-container {
    width: 100%; /* Full width or adjust as needed */
    
    background-image: url('../images/pix3.png'); /* Path to your image */
    background-size: cover; /* Ensures the image covers the entire container */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Avoids repeating the image */
    color: white; /* Text color for content inside */
    text-align: center;
    font-size: 1.5rem; /* Optional: Text size */
    font-family: Arial, sans-serif;
}

.floating-card{
      padding: 20px;
      background-color: rgba(255, 255, 255, 0.8);
      box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
      border-radius: 8px;
      margin: 20px auto;
      transition: box-shadow 0.3s ease;
      color: #555;
      min-height: 240px;
}

.brand-pink{
    color: #ad0184;
}
.brand-pink-background{
    background-color: #ad0184;;
}

.brand-yellow{
    color: #ffc732;
}
.brand-yellow-background{
    background-color: #ffc732;
}

@media (max-width: 768px) {
    .image img {
      width: 100%;
      height: auto;
    }
  }
  
  .footer-subheader{
    font-weight: bold;
    color: white;
  }