/*.my-border {*/
/*    border: 1px solid #000;*/
/*    border-top: 0;*/
    
/*}*/

.my-text span {
    font-size: 30px;
    font-weight: 700;
}


.my-text {
    position: relative;
    text-align: center;
    /*display: inline-block;*/
    /*padding: 0 30px;*/
    font-weight: 600;
    letter-spacing: 2px;
    width: fit-content;
    margin: 0px auto;
}

.my-text:before,
.my-text:after {
    content: "";
    position: absolute;
    top: 50%;
    width: 80px; /* line length */
    height: 1px;
    background-color: #000; /* gold color */
}

.my-text:before {
    right: 100%;
    margin-right: 20px;
}

.my-text:after {
    left: 100%;
    margin-left: 20px;
}