.hero {
    position: relative;
    text-align: center;
}

.hero .title{
    color: white;
}

.hero .subtitle {
    color: white;
}

.hero::before {
    background-size: cover;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero::after {
    background-color: #d41414;
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
}



