diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..f673a71 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "liveServer.settings.port": 5502 +} \ No newline at end of file diff --git a/index.html b/index.html index 3d144c7..95a882f 100644 --- a/index.html +++ b/index.html @@ -61,6 +61,11 @@ + +
diff --git a/style.css b/style.css index 07d5e5a..3ec0baf 100644 --- a/style.css +++ b/style.css @@ -233,3 +233,25 @@ h1:hover { opacity: 1; } +.project-links { + margin-top: 2rem; + font-size: 1rem; +} + +.project-links a { + display: inline-block; + margin: 0.5rem 0; + padding: 0.5rem 1rem; + background: white; + color: #242424; + text-decoration: none; + font-weight: bold; + border-radius: 20px; + transition: background-color 0.3s ease, color 0.3s ease; +} + +.project-links a:hover { + background: #2563eb; + color: white; +} +