/phin-portfolio index.html styles.css /images (all your images inside) Phin's Portfolio

Phin's Portfolio

Capturing Moments, Crafting Memories

/* General Reset */ * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Poppins', sans-serif; background-color: #121212; color: #ffffff; line-height: 1.6; } /* Header */ header { text-align: center; padding: 50px 20px; } header h1 { font-size: 3rem; color: #00FFAB; margin-bottom: 10px; } header p { font-size: 1.2rem; color: #cccccc; } /* Gallery */ .gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; padding: 40px 20px; max-width: 1200px; margin: 0 auto; } .gallery-item { overflow: hidden; border-radius: 10px; transition: transform 0.3s ease, box-shadow 0.3s ease; } .gallery-item img { width: 100%; height: auto; display: block; border-radius: 10px; } .gallery-item:hover { transform: scale(1.05); box-shadow: 0 8px 20px rgba(0, 255, 171, 0.5); } /* Footer */ footer { text-align: center; padding: 30px 20px; background-color: #1e1e1e; margin-top: 50px; font-size: 0.9rem; color: #aaaaaa; }