Jekyll - SCSS not working

SCSS isn’nt working.

in /assets/css/style.scss

---    

# This block will make Jekyll render this file as CSS

---

/* import theme stylesheet */

@import "minima";
@import "minima/syntax-highlighting";

/* any custom styles go below */
p {
	h1 {
		h2 {
			h3 {
				h4 {
					h5 {
						color: white;
					}
				}
			}
		}
	}
}
a {
	color: purple;
}
html {
	background-color: black;
}
.post-meta {
	color: whitesmoke;
}

This isn’t really proper. Try something along the lines of:

h1,h2,h3,h4,h5,p{
    color: white;
}

Doesn’t work still. Site works though

Could you link your project so I could have a look?

Here it is:

Edit: i acessed the hidden _site folder and was able to edit css from there
Edit 2: It refreshes when I edit so I just pasted <style>my CSS</style> to all pages