I'm trying to use a stock photo to cover my page. For some reason I cannot seem to get this to work. My image just refuses to cover the page.
#cover {
background-image: url("https://i.sstatic.net/QE9pP.jpg");
background-size: cover;
background-size: center center;
background-repeat: no-repeat;
background-attachment: fixed;
background-color: #464646;
}
.cover-content {
color: hsla(182, 100%, 28%, 1);
font-family: font-family: 'Gravitas One', cursive;
font-size: 400%;
text-align: center;
}
<div id="cover">
<div class="cover-content">
<h1>Snowfall Design Studio</h1>
</div>
</div>
baclground-size: center centeris invalid and should either be removed, or changed tobackground-position: center.