I'm trying to make a linear-gradient of one body, but it is split in 2? Im confused..
CSS:
/* Custom properties */
body {
background: linear-gradient(rgb(53, 53, 255), rgb(248, 117, 139));
}
HTML (removed a bits of code, to make it neater)
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="index.css">
</head>
<body>
</body>
</html>