How can I create a background image on hover that is centered and sits behind the text paragraph but ontop of the gradient animation?
https://codepen.io/glittergirl/pen/mjopmW
img{
display: none;
max-width: 50%;
opacity: 0.5;
filter: alpha(opacity=50);
justify-content: center;
}
span:hover + img{
display: block;
}
.photo img{
max-width: 30%;
opacity: 0.5;
filter: alpha(opacity=50);
}
Oh and lastly if anyone knows why my rotated text isn't being effected by my styling?? driving me crazy