@import url('https://fonts.googleapis.com/css2?family=Geist:wght@300..700&display=swap');

body 
{
    font-family: "Geist", 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


/* Header */
.background-container
{
    position: relative;
}
.background-image
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    filter: brightness(40%);

    z-index: 1;
}
.background-content
{
    position: relative;
    z-index: 2;
}
