/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

 body {
        margin: 0;
        padding: 0;
        min-height: 100vh; /* Ensures the background covers the full viewport height */
        font-family: sans-serif;
        color: white;
        text-align: center;
    }

    .gradient-background {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /* Linear gradient from top-left to bottom-right, with three color stops */
        background-image: linear-gradient(to bottom right, #000000, #2B382B, #1E611E);
        /* Radial gradient example (uncomment to use) */
        /* background-image: radial-gradient(circle, #ff7e5f, #feb47b); */
    }

    h1 {
        font-size: 3em;
        margin-bottom: 20px;
    }

    p {
        font-size: 1.2em;
    }