From 7a66661932cf32cb2837326dac5fc8c08d3d3b9e Mon Sep 17 00:00:00 2001 From: Gabriel Kaszewski Date: Mon, 4 May 2026 23:24:04 +0200 Subject: [PATCH] css --- static/style.css | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/static/style.css b/static/style.css index c3f5dbb..502718f 100644 --- a/static/style.css +++ b/static/style.css @@ -34,6 +34,21 @@ body { background: url("/static/background.avif") center / cover no-repeat fixed; min-height: 100%; line-height: 1.5; + position: relative; +} + +body::before { + content: ""; + position: fixed; + inset: 0; + background: rgba(0, 0, 0, 0.2); + z-index: 0; + pointer-events: none; +} + +body > * { + position: relative; + z-index: 1; } a {