Kod poniżej jest tylko na pozór długi, większa część to reset css. Normalnie oczywiście jest to w innym pliku. Tu wstawiłem na wszelki wypadek
Natomiast chodzi o to, że chcę mieć tło obrazkowe. Mam zdjęcie, wiem jaki filtr zastosować żeby wyglądało jak chcę (przyciemnione w stosunku do oryginału).
Problem polega na tym, że styl .body-layout działa na element

jak należy ( wyświetla obraz tła i przyciemnia) natomiast na <html> już nie - wyświetla obraz tła ale nie przyciemnia. Reset css jest po to aby wyeliminować różne ewentualne ukryte ustawienia.
Celem jest użycie tego obrazu z przyciemnieniem jako tła i nie bardzo wiem dlaczego ten sam styl inaczej działa na div a inaczej na element body i html</p>

<!DOCTYPE html>
<html lang="en" class="body-layout" >
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <!--<link rel="Stylesheet" type="text/css" href="./daftwzorzec.css" /> -->
    <style type="text/css">
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}






.body-layout{
    background-image:url('http://s5.ifotos.pl/img/bgimagejp_qepsrah.jpg');
    filter: brightness(0.67);
    background-repeat:no-repeat;
    background-position:center top;
    background-attachment: fixed;
    height:100vh;   
};



</style>
    <title>Document</title>
</head>
<body >
  <div class="body-layout"   ></div>
</body>
</html>