body {
    margin: 0;
}

.brand {
    background:
    /* top, transparent black, faked with gradient */ 
    linear-gradient(
      rgba(0, 0, 0, 0.2), 
      rgba(0, 0, 0, 0.2)
    ),
    /* bottom, image */
    url(../img/hero/home.png);
}


.hero {
    height: 200px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    display: inline-block;
    position: relative;
    border-radius: 0px 0px 30px 30px;
    z-index: 99;
}



.text-hero {
	color: white;
    font-weight: 550;
	font-family: 'Poiret One', cursive;
    font-size: clamp(60px, 5vw, 100px);
    text-align: center;
    vertical-align: middle;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;

}