:root {
    --bggradient: url("../background.png");
}


header {
    background-image: var(--bggradient); /* Assuming --bggradient is the path to your image */
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover; /* This makes the image cover the full width and height */
    height: 100vh;
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {
    header {
        background-image: none;
        background: linear-gradient(to bottom, #eecba1, #020024, #ffffff);
    }
}