diff --git a/html_css/style.css b/html_css/style.css
new file mode 100644
index 0000000..866ea96
--- /dev/null
+++ b/html_css/style.css
@@ -0,0 +1,59 @@
+html {
+ font-family: Helvetica, Arial, sans-serif;
+ font-size: 10px;
+}
+
+h2 {
+ font-size: 2rem;
+}
+
+ul,ol,dl,p {
+font-size: 1.5rem;
+}
+
+li, p {
+line-height: 1.5;
+}
+
+/* Unordered list styles */
+
+ul {
+padding-left: 2rem;
+list-style-type: none;
+}
+
+ul li {
+padding-left: 2rem;
+background-image: url(star.svg);
+background-position: 0 0;
+background-size: 1.6rem 1.6rem;
+background-repeat: no-repeat;
+}
+
+/* Ordered list styles */
+
+ol {
+list-style-type: upper-roman;
+}
+
+/* Description list styles */
+
+dd, dt {
+line-height: 1.5;
+}
+
+dt {
+font-weight: bold;
+}
+
+body {
+ background-image: url('Background.jpg');
+ background-repeat: no-repeat;
+ background-attachment: fixed;
+ background-size: cover;
+}
+
+#foo {
+ border-color: black;
+ background-color: white;
+}