diff --git a/index.html b/index.html index 91cdb86..22ed8c5 100644 --- a/index.html +++ b/index.html @@ -27,11 +27,14 @@ /* Стартовое меню — поверх холстов, перекрывает сцену своим фоном. */ #menu { position: absolute; inset: 0; z-index: 10; - background: #0a0a0fee; + /* фон-картинка с тёмным затемнением для читаемости; фолбэк — тёмный цвет */ + background: linear-gradient(rgba(10,10,15,0.7), rgba(10,10,15,0.82)), + url(assets/menu-bg.png) center / cover no-repeat, #0a0a0f; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; padding: 24px; } - #menu h1 { font-size: 40px; letter-spacing: 4px; color: #c9b27a; } + #menu h1 { font-size: 40px; letter-spacing: 4px; color: #c9b27a; margin-bottom: 4px; } + #menu-logo { display: block; width: min(560px, 80%); height: auto; } .menu-sub { color: #888; margin-bottom: 6px; } #menu-presets { display: flex; flex-direction: column; gap: 10px; width: 360px; max-width: 90%; } .menu-preset { @@ -55,7 +58,7 @@