I've tried the background-image tag in my CSS and also in a tag in my HTML. I can't get anything to appear behind my wrapper. I can get my wrapper background to appear with color, but that it.
html,
body {
background-image: url("https://vgy.me/u/TpG24N");
text-align: center;
height: 100%;
}
#wrapper {
margin: 2% auto;
width: 875px;
height: 80%;
box-sizing: border-box;
background-color: rgb(250, 194, 245)
}
#subwrapper {
position: relative;
}