@import url(//fonts.googleapis.com/css?family=Roboto);
@import url('https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300');

/* Ensure the image covers the entire screen */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
	font-family: 'Open Sans', sans-serif;
	background-image: url('/bg.png'); /* Replace with your image path */
    background-repeat: repeat;                /* Tiles the image */
    background-size: auto;                    /* Keeps original size */
    background-color: #ffffff;                /* Optional fallback color */

}

.container {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    overflow: hidden; /* Hide overflow to ensure full screen effect */
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the container without stretching */
    z-index: -1; /* Place the image behind the text box */
}

.text-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center the text box */
    background: rgba(0, 0, 0, 0.6); /* White background with 80% opacity */
	color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 80%; /* Adjust width as needed */
    max-width: 600px; /* Max width for larger screens */
    font-weight: normal;
    font-style: normal;
}

.text-box a:link, .text-box a:visited, .text-box a:active {
	color: white
}

.text-box a:hover {
	color: darkred;
	font-weight: bold;
}	

h1 {
    margin: 0;
    font-size: 2rem; /* Responsive font size */
}

p {
    margin: 10px 0 0;
    font-size: 1rem; /* Responsive font size */
}
