📸 My Love for Photography

Camera

Gears I Use

From DSLRs to mirrorless, I love exploring different camera setups.

Landscapes

Nature Shots

Capturing the serene beauty of mountains, forests, and skies.

Portraits

People & Portraits

I enjoy highlighting emotions through faces and frames.

/* Reset + Fonts */ * { margin: 0; padding: 0; box-sizing: border-box; font-family: "Segoe UI", sans-serif; } /* Light Theme */ body.light-theme { background: linear-gradient(to right, #f0f0f0, #ffffff); color: #333; } /* Dark Theme */ body.dark-theme { background: linear-gradient(to right, #1e1e1e, #2d2d2d); color: #f9f9f9; } .header { padding: 2rem; text-align: center; background: linear-gradient(to right, #6dd5ed, #2193b0); color: white; transform: skewY(-2deg); } .header h1 { transform: skewY(2deg); } #themeToggle { margin-top: 1rem; padding: 0.5rem 1rem; font-weight: bold; border: none; border-radius: 5px; background-color: #fff; color: #333; cursor: pointer; transform: scale(1.05); } #themeToggle:hover { transform: scale(1.1); } /* Grid Layout */ .grid-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; padding: 2rem; } .card { background: rgba(255, 255, 255, 0.1); border-radius: 15px; overflow: hidden; box-shadow: 0 8px 16px rgba(0,0,0,0.2); padding: 1rem; text-align: center; transition: transform 0.3s ease; } .card:hover { transform: translateY(-10px) scale(1.02); } .card img { width: 100%; border-radius: 10px; margin-bottom: 1rem; } /* Footer */ footer { text-align: center; padding: 1rem; margin-top: 2rem; background-color: #444; color: #fff; }