.hero {
    background-image: url(../assets/images/kiosk/project2.png);

}
.hero::after {
    content: "Museum Kiosk"; /* Manually set the alt text */
}
#brand-1{
    background-image: url(../assets/images/kiosk/screen1.png);
}
#brand-2{
    background-image: url(../assets/images/kiosk/screen2.png);
}
#brand-3{
    background-image: url(../assets/images/kiosk/screen3.png);
}
#brand-4{
    background-image: url(../assets/images/kiosk/screen4.png);
}
#brand-1::after, #brand-2::after, #brand-3::after, #brand-4::after  {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background:  #e6a8ff;
    color: #3f125b;  
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    pointer-events: none;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

#brand-1:hover::after, #brand-2:hover::after, #brand-3:hover::after, #brand-4:hover::after {
    opacity: 1;
}
#brand-1::after {
    content: "Title Screen"; /* Manually set the alt text */

}
#brand-2::after {
    content: "Screen One"; /* Manually set the alt text */

}

#brand-3::after {
    content: "Screen Two"; /* Manually set the alt text */

}

#brand-4::after {
    content: "Screen Three"; /* Manually set the alt text */

}

.work-items {
    height: 800px;
}


@media (max-width: 599px) {
    .work-items {
        width: 100%;
        height: 250px;
    }

    
  }
  
  @media screen and (min-width: 600px) and (max-width: 768px) {
  
    .work-items {
  
        height: 450px;
  
    }

  }
  @media screen and (min-width: 769px) and (max-width:1024px){
    .work-items {
  
        height: 550px;
  
    } 


 }