/* Basic styling for body and html */
body, html {
    height: 100%;
    margin: 0;
    background-color: black;
}

/* Background image and text styling */
.bgimg {
    background-image: url('your_image.jpg');
    height: 100%;
    background-position: center;
    background-size: cover;
    position: relative;
    color: white;
    font-family: "Courier New", Courier, monospace;
    font-size: 25px;
}

/* Centering text in the middle */
.middle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}

/* Styling for the horizontal rule and paragraph */
hr {
    margin: auto;
    width: 40%;
    border: 1px solid white;
}

p {
    font-size: 18px;
}

