body {
    background-image: url('learnmore1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

h1, h2, p {
    text-align: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
    margin: 0 auto;
    padding: 10px;
}

h1 {
    -webkit-text-stroke: 0.75px black;
}

h2 {
    -webkit-text-stroke: 0.5px black;
}

p {
    -webkit-text-stroke: 0.3px black;
}

/* Responsive font sizes */
@media (max-width: 1200px) {
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }
    p {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.5rem;
    }
    p {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }
    h2 {
        font-size: 1.25rem;
    }
    p {
        font-size: 1rem;
    }
}
