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

.bgimg {
    /* Background image */
    background-image: url('../images/road.jpg');
    /* Full-screen */
    height: 100%;
    /* Center the background image */
    background-position: center;
    /* Scale and zoom in the image */
    background-size: cover;
    /* Add position: relative to enable absolutely positioned elements inside the image (place text) */
    position: relative;
    /* Add a font */
    font-family: "Courier New", Courier, monospace;
    /* Set the font-size to 25 pixels */
    font-size: 25px;
    color: white;
    font-family: Raleway, sans-serif;
    letter-spacing: 4px;
}

/* Position text in the middle */
.container.middle {
    position: absolute;
    background-color:rgb(0, 0, 0, .7);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 5%;
}

.container.middle a {
    color: rgb(236, 147, 30);
}
.container.middle a:hover {
    color: rgb(255, 188, 100);
}

.container.middle .small {
    font-style: italic;
    font-size: 16px;
}

/* Style the <hr> element */
.container.middle hr {
    border-color: white;
    padding: 10px;
    width: 40%;
} 