.hero {  height: 300px; 
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    margin-top: 55px;
    overflow: hidden;
    position: relative;
    z-index: 0;
    background-color: #F3F1EB;
}
.hero:before{
    z-index: -1;
    content:"";
    width: 100%;
    height: 100%;
    position: absolute; 
    opacity: 0; 
    overflow: hidden;
    animation: zoomInHero 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
@keyframes zoomInHero {
   0% {
    transform: scale(1.115);
    opacity: 0;
    filter: blur(50px);
  }
  
  100% {
    transform: scale(1);
    opacity: 1;
    filter: blur(0px);
  }
}
.hero img{
    width: 300px;
}
.hero h1{
    font-family: serif;
    font-weight: normal;
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 10px;
}
@media (max-width: 768px) {
    .hero {
        height: 250px; 
    margin-top: 75px;
    }

}
