diff --git a/css/global.css b/css/global.css index a20a60f..7e0af81 100644 --- a/css/global.css +++ b/css/global.css @@ -3,20 +3,24 @@ } :root { - --color: #8f00ff; - --light-color: #e8cdfe; + --color: #7D50FF; + --light-color: #CEC6FF; } html, body { margin: 0; + overflow: hidden; + cursor: none; } body { - background-color: var(--light-color); + background-color: white; } header { + position: relative; + z-index: 100; width: 100%; height: 100vh; text-align: center; @@ -32,11 +36,12 @@ header { h1 { font-family: "SI17"; font-size: 64px; + line-height: 0.85; text-transform: uppercase; - color: var(--color); /* Fallback color */ - -webkit-text-fill-color: var(--light-color); /* Will override color (regardless of order) */ + color: var(--light-color); /* Fallback color */ + -webkit-text-fill-color: white; /* Will override color (regardless of order) */ -webkit-text-stroke-width: 1.5px; - -webkit-text-stroke-color: var(--color); + -webkit-text-stroke-color: white; } .date { @@ -46,3 +51,13 @@ h1 { a { color: currentColor; } + +.box { + position: absolute; + top: 0; + left: 0; + width: 20vw; + height: 20vw; + background-color: var(--color); + border-radius: 4px; +} \ No newline at end of file diff --git a/index.html b/index.html index 710fc2a..ea143b7 100644 --- a/index.html +++ b/index.html @@ -37,10 +37,12 @@ +
+