My current code seems to make a pattern instead of covering the entire page. How do I make it to cover the entire page instead of a pattern like depiction?
<style>
body {
background: linear-gradient(120deg, #211B53, #ECE3E6);
width: 100%;
height: 100%;
}
#para1 {
text-align: center;
font-size: 600%;
color: black;
}
div.absolute {
position: absolute;
bottom: 10px;
left: 10px;
}
</style>
<p id="para1"> ARTWORK</p>
<div class="absolute"> All sales final. </div>