My SCSS code does not seem to be working on my live HTML file server. I tried setting the background color to red, but it's not displaying correctly. The CSS link in the HTML file appears to be correct. Unfortunately, I can't include too much code here. Please let me know if you need more context.
Please help me troubleshoot this issue!
Thank you!
Here is a snippet of my HTML code:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>The 2021 Frontend Developer Crash Course</title>
<link rel="stylesheet" href="css/main.css"/>
And here is a snippet of my SCSS file:
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,700;1,700&display=swap");
body {
background: #d81c1c;
margin: 0;
font-family: "Poppins";
}
.navbar {
background: rgb(173, 25, 25);
}