diff --git a/website/style.css b/website/style.css index 2fe3f9f..63e1d8d 100644 --- a/website/style.css +++ b/website/style.css @@ -315,3 +315,21 @@ body { opacity: 0; /* Hide the logo */ visibility: hidden; /* Ensure the logo is not clickable */ } + +.language-switcher { + position: fixed; + bottom: 20px; /* Position at the bottom */ + left: 20px; /* Position at the left */ + background-color: #ff8c00; + color: white; + padding: 10px 20px; + border-radius: 25px; + cursor: pointer; + font-size: 1em; + transition: all 0.3s ease; + z-index: 1100; /* Ensure it is above other elements */ +} + +.language-switcher:hover { + background-color: #e65c00; +} \ No newline at end of file