/* Set the full height of the page and remove margins */
html, body {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    color: white;
}

/* Apply the background image and gradient */
body {
    background: linear-gradient(to bottom, #020B24 0%, #003366 100%); /* Black to dark blue gradient */
    background-attachment: fixed; /* Keeps the background fixed during scroll */
    background-size: cover;
    background-position: center;
    height: 100%;
}

/* Content section to provide some text */
.content {
    padding: 100px 20px;
    text-align: center;
    position: relative;
    z-index: 1;  /* Ensure text is above the background */
}

/* Ensure the gradient covers the entire page */
body::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(to bottom, #020B24 0%, #003366 100%);
    z-index: -1;
}
