/* all common css start  */
* {
    margin: 0;
    padding: 0;
}

/* all common css end  */

.Banner {
    background: url(../images/pexels-suat-inan-672106106-32278351.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

}

.overlay {
    padding: 350px 0;
    background: rgba(0, 0, 0, 0.65);
    text-align: center;
    color: white;
}

.overlay h1 {
    display: inline-block;
    position: relative;
    font-family: "Tektur", sans-serif;
}


.overlay h1::before {
    position: absolute;
    height: 5px;
    width: 70px;
    left: -80px;
    top: 50%;
    transform: translateY(-50%);
    background: red;
    content: "";
}

.overlay h1::after {
    position: absolute;
    height: 5px;
    width: 70px;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    background: red;
    content: "";
}


.overlay p::before {
    position: absolute;
    height: 70px;
    width: 5px;
    left: 50%;
    top: -80px;
    transform: translateX(-50%);
    background: red;
    content: "";
}

.overlay p::after {
    position: absolute;
    height: 70px;
    width: 5px;
    left: 50%;
    bottom: -80px;
    transform: translateX(-50%);
    background: red;
    content: "";
}