When I run my code for my HTML and CSS project, I have a background, which I set in the CSS class. This background is constructed in the HTML file. But it does not seem to cover the entire screen for my computer. When I try to edit the height variable, it doesn't change the height of the background, which leaves me clueless.
.gradient{
width: 100wh;
height: 90vh;
color: #fff;
background: radial-gradient(#EE7752, #CF22E7);
background-size: 400% 400%;
-webkit-animation: Gradient 10s ease infinite;
-moz-animation: Gradient 10s ease infinite;
animation: Gradient 10s ease infinite;
}
<div class="jumbotron text-center gradient">
<div class="content">
<p class="lead" style="color:#FFFFFF"></p>
</div>
</div>