body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
}

.welcome-container {
    background-image: url('images/horse-7637951_1280.jpg'); /* Replace 'your-image.jpg' with your image file path or URL */
    min-height: 100vh; /* Ensures it covers the full viewport height */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents image tiling */
    background-size: cover; /* Scales the image to cover the entire container */
    
    /* Center the text content over the image */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white; /* Makes text visible against a dark background */
    text-shadow: 2px 2px 4px #000000; /* Adds shadow for better readability */
    padding: 20px;
    box-sizing: border-box;
}

h1 {
    font-size: 3em;
    margin: 0 0 10px 0;
    align-items: center;
}

p {
    font-size: 1.2em;
    align-items: center;
}