/* Set height to 100% for body and html to enable the background image to cover the whole page: */

body,
html {
    height: 100%;
    margin: 0;
}

.bgimg {
    /* Background image */
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('background-9.jpg');
    /* Full-screen */
    height: 100%;
    width: 100%;
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    color: white;
    font-family: 'Julius Sans One', sans-serif;
    font-size: 25px;
}

.middle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

/* Style the <hr> element */

hr {
    margin: auto;
    width: 40%;
}
