diff --git a/src/pages/projects.jsx b/src/pages/projects.jsx
index 981f1156..19bf4208 100644
--- a/src/pages/projects.jsx
+++ b/src/pages/projects.jsx
@@ -43,6 +43,11 @@ const Cards = () => {
backdropFilter: 'blur(4px) brightness(100%)',
display: 'flex',
flexDirection: 'column',
+ transition: 'transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out',
+ '&:hover': {
+ transform: 'translateY(-5px)',
+ boxShadow: '0px 10px 20px rgba(0,0,0,0.2)',
+ },
}}
>
@@ -83,10 +88,15 @@ const Cards = () => {
-
+
{project.link.label}
-
+
@@ -120,8 +130,7 @@ const ProjectSection = () => {
const styles = {
bannerWrapper: {
- width: '100vw',
- marginLeft: 'calc(-50vw + 50%)',
+ width: '100%',
position: 'relative',
overflow: 'hidden',
},