Could someone help me understand why the background color is not showing on my website?
This is the CSS I am using
html {
font-size: 100%;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
*, *::before, *::after {
-webkit-box-sizing: inherit;
box-sizing: inherit;
}
body {
background-color: linear-gradient(#af67e9, #6565e7);
margin: 0;
padding: 0;
font-family: 'Kumbh Sans', sans-serif;
line-height: 1.3;
}