.title {
    display: flex;
    align-items: center;
    text-align: center;
}
.title h1 {
    font-size: calc(4 * (1vw + 1vh)/2);
    
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
    
    margin-top: 6.51vh;
    margin-bottom: 6.51vh;
    
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%; 
    color: rgb(184, 182, 63);
}
.title h1::before, .title h1::after {
    content: "";
    flex-grow: 1;
    height: 0.4vh;
    background-color: rgb(184, 182, 63);
    margin: 0 20px;
}
.title h1::before{
    margin-right: 20px;
}
.title h1::after{
    margin-left: 20px;
}