/* Reset default margins */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Source Sans Pro', sans-serif;
}

.background-container {
    /* Replace the URL below with your image file */
    background-image: url('freynolds.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    width: 100%;
}

.overlay {
    /* This creates the semi-transparent layer over the photo */
    background-color: rgba(0, 0, 0, 0.5); /* Black at 50% opacity */
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.content {
    color: white;
    max-width: 800px;
}

h1 {
    font-family: '', serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

p {
    font-size: 1.4rem;
    line-height: 1.6;
    font-weight: 300;
    opacity: 0.9;
}

/* Responsive adjustments for mobile */
@media (max-width: 600px) {
    h1 { font-size: 2.2rem; }
    p { font-size: 1.1rem; }
}