/* Ensure the image covers the entire screen */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

.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: contain; /* Cover the container without stretching */
    z-index: -1; /* Place the image behind the text box */
	background-color: black;
}

.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-family: 'IBM Plex Sans';
    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 */
}
