:root {
    --yellowSripesWidth: 40px; 
    --backgroundColor: #101010
}


#construction-lines {
    /* display: inline-block; */
    display: flex;

    width: 90%;
    height: 250px;
    text-align: center;

    justify-content: center;  /* Center horizontally */
    align-items: center;      /* Center vertically */

    /* Adjust height as needed */
    background: repeating-linear-gradient(
        -45deg,
        rgb(226, 173, 0),
        rgb(226, 173, 0) var(--yellowSripesWidth), /* set px to set wideness of yellow lines*/
        transparent var(--yellowSripesWidth), /* yellow lines */ 
        transparent calc( var(--yellowSripesWidth) * 2 ) /*black lines must be doubble of yellow lines wideness*/
    );
}
#construction-text {
    /* display: inline-block; */
    display: flex;

    background-color: var(--backgroundColor);
    /* margin: 0px; */
    margin-top: 10px;
    margin-bottom: 10px;
}
#construction-text h1 {

    margin: 10px;
}