/* Basic Reset and Setup */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    
    /* --- NEW BACKGROUND STYLES --- */
    background-image: url('SitkaSpirits.png'); /* Reference the uploaded image file */
    background-size: cover; /* Ensures the image covers the entire screen */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat;
    background-attachment: fixed; /* Keeps the background static if scrolling were possible */
    
    color: white; /* Changed text color to white for contrast */
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Container for content */
.container {
    max-width: 600px;
    padding: 40px;
    /* Optional: Add a subtle, semi-transparent dark overlay behind the text 
       to ensure better readability over the image */
    background-color: rgba(0, 0, 0, 0.4); 
    border-radius: 10px;
}

/* Typography */
h1 {
    font-size: 3.5em;
    margin-bottom: 0.1em;
    letter-spacing: 5px;
}

h2 {
    font-size: 1.5em;
    font-weight: 300;
    margin-top: 0;
    margin-bottom: 1.5em;
}

p {
    font-size: 1.1em;
    margin-bottom: 2em;
}

a {
    color: #f5e9d5;
    text-decoration: none;
    font-weight: 600;
}

a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Footer */
.copyright {
    margin-top: 50px;
    font-size: 0.8em;
    opacity: 0.7;
}
