When to use Comments?
diff --git a/style.css b/style.css
index 26f8ac8..3912639 100644
--- a/style.css
+++ b/style.css
@@ -21,6 +21,11 @@ h2 {
font-size: 39px;
}
+h1,
+h2 {
+ margin-bottom: 30px;
+}
+
div {
width: 100%;
height: 100%;
@@ -44,8 +49,10 @@ img {
}
p {
+ text-align: justify;
max-width: 450px;
padding: 18px;
+ color: rgba(0, 0, 0, 0.6);
}
ul {
@@ -62,3 +69,24 @@ li {
flex-direction: column;
}
}
+
+.s-blue {
+ background-color: #0802a3;
+ color: white;
+}
+
+.s-pink {
+ background-color: #ff4b91;
+ color: white;
+}
+
+.s-yellow,
+.s-yellow p {
+ background-color: #ffcd4b;
+ color: rgb(0, 0, 0) !important;
+}
+
+.s-blue p,
+.s-pink p {
+ color: rgba(255, 255, 255, 0.8);
+}