summaryrefslogtreecommitdiff
path: root/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'style.css')
-rw-r--r--style.css41
1 files changed, 41 insertions, 0 deletions
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..cff8753
--- /dev/null
+++ b/style.css
@@ -0,0 +1,41 @@
+
+body {
+ background-color: black;
+ font-size: 20;
+}
+
+.mainflex {
+
+ display: flex;
+ justify-content: center;
+ height: 90vh;
+ align-items: center;
+ flex-direction: column;
+ gap: 0.5%;
+
+}
+
+.mainflex img {
+
+ margin-left: 110px;
+
+}
+
+a {
+ color: violet;
+ text-decoration: none;
+ text-shadow: indigo 2px 5px;
+}
+
+a:hover {
+ color: slateblue;
+ text-decoration: none;
+ text-shadow: navy 2px 5px;
+}
+
+footer {
+ border-top: 2px dashed grey;
+ display: flex;
+ justify-content: center;
+ padding: 2%;
+}