diff --git a/.vscode/settings.json b/.vscode/settings.json index 155422b0a..a0de46ff5 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,3 +1,3 @@ { - "liveServer.settings.port": 5503 + "liveServer.settings.port": 5504 } \ No newline at end of file diff --git a/style.css b/style.css index 6ace6c2fe..51e68ba09 100644 --- a/style.css +++ b/style.css @@ -440,8 +440,17 @@ header { /* transform: translateX(-13vw); */ z-index: -10; position: relative; + animation: float 6s ease-out infinite; + } + @keyframes float { + 0% { transform: translate(0, 0px); } + 50% { transform: translate(0, 25px); } + 100% { transform: translate(0, -0px); } + } + + /* features section */ .features-section {