body, html {
    height: 100%;
    margin: 0;
}

.bgimg {
    /* Background image */
    background-image: url(cs\ bg.jpg);
    
    /* Full Screen */
    height: 100%;

    /* Center The Background Image */
    background-position: center;

    /* Scale And Zoom In The Image */
    background-size: cover;

    /* Add Position */
    position: relative;

    /* Add A White Text */
    color: white;

    /* Add A Font */
    font-family: 'Courier New', Courier, monospace;

    /* Set The Font Size */
    font-size: 25px;
}

/* Position Text In The Top-Left Corner */
.topleft {
    position: absolute;
    top: 0;
    left: 16px;
}

/* Position Text In The Bottom-Left Corner */
.bottomleft {
    position: absolute;
    bottom: 0;
    left: 16px;
}

/* Position Text In The Middle */
.middle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

/* Style The <hr> Element */
hr {
    margin: auto;
    width: 40%;
}