:root {
    --backclr: rgb(250, 250, 255);
}

body {
    margin: 0;
    height: 100%;
    background-color: var(--backclr);
    background-image: url("../img/deniS_FINAL_LOGO_forBackground.png");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 20rem;
    background-position: 2rem 14rem;
    background-blend-mode: multiply;

}

header {
    max-height: 9.5rem;
    position: relative;
    margin-top: 0;
    width: 100%;
    z-index: 999;
}

footer { 
    margin-top: auto;
    width: 100%;
    position: absolute;
    bottom: 0;

}

main {
    margin-top: 9.5rem;
    margin-left: 0;
    margin-right: 0;


    /* min-height: calc(100vh - 9.5rem); */

    

}

* {
    box-sizing: border-box;
}