diff --git a/style.css b/style.css index 64a1a0e..04c6724 100644 --- a/style.css +++ b/style.css @@ -156,3 +156,22 @@ section { border-radius: 10px; box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); } + +#scrollToTop { + position: fixed; + bottom: 20px; + right: 20px; + background-color: rgb(144, 54, 54); + color: white; + border: none; + padding: 10px 15px; + border-radius: 50%; + cursor: pointer; + font-size: 20px; + transition: background 0.3s ease; + display: none; +} + +#scrollToTop:hover { + background-color: rgb(255, 153, 102); +}