diff --git a/index.html b/index.html index e54c464..cdb7cb5 100644 --- a/index.html +++ b/index.html @@ -36,6 +36,37 @@ background: radial-gradient(circle at top right, #333 0%, #000 50%); background-repeat: no-repeat; } + + .glow { + position: relative; + } + + .glow::before { + position: absolute; + content: 'banana'; + background-color: #ffce00; + width: 0px; + height: 0px; + filter: blur(30px); + z-index: -1; + top: -6px; + left: -4px; + border-radius: 50%; + transition: all 0.5s; + } + + .glow:hover::before { + position: absolute; + content: 'banana'; + background-color: #ffce00; + width: 40px; + height: 40px; + filter: blur(30px); + z-index: -1; + top: -6px; + left: -4px; + border-radius: 50%; + } @@ -44,10 +75,10 @@