commit 3b6dff9045184de9b511d720c89f6618dc19ac25 Author: Paul Martin Date: Tue Nov 7 23:24:46 2023 +0100 initial commit diff --git a/blob-animation.js b/blob-animation.js new file mode 100644 index 0000000..e69de29 diff --git a/home.html b/home.html new file mode 100644 index 0000000..4264f8e --- /dev/null +++ b/home.html @@ -0,0 +1,13 @@ + + + + DAIALECT + + + + +
+

DAIA
LECT

+
+ + \ No newline at end of file diff --git a/noise-texture.svg b/noise-texture.svg new file mode 100644 index 0000000..a7420a0 --- /dev/null +++ b/noise-texture.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/style.css b/style.css new file mode 100644 index 0000000..6a31f33 --- /dev/null +++ b/style.css @@ -0,0 +1,41 @@ +body +{ + background-color: #FFE49F; + color: #E07A31; +} + +.main-title +{ + font-family: "League Spartan Black"; + font-size: 200px; + display: flex; + text-align: center; + display: flex; + justify-content: center; + align-items: center; + width: 60%; + height: 200%; + z-index: 100; + position: relative; +} + +body::before, +body::after { + position: absolute; + left: 0; + top: 0; + content: ''; + width: 2048px; + height: 2048px; + z-index: 50; + opacity:100%; +} + +body::before { + background: url("noise-texture.svg"); + mix-blend-mode: soft-light; +} + + + +