Benjamin Selvester

photography n stuff

Who gave bro a website šŸ˜­šŸ™

About Me

I’m Benjamin. I just made this as a joke and to show off photos (mostly to myself) and other things. I am a 6'1 humble feminist. Fuelled by monster ultra white and funny stuff. Also blue is a pretty peak colour. Also monster ultra white is good. xoxo - b

Projects

Here are a few shots, projects amongst other things I've been doing. I'll add more soooooooon, there's a few up now.

Polaroids
Femboy London Eye Big Benjamin Duck in a Ride My photo My photo My photo My photo

Videos


Comments

Contact

email me anything, i love emails. and cats. cat emails would be flames.

Email: benjaminselvester@gmail.com

Social Media

Instagram | Twitter | GitHub | Letterboxd | TikTok
// Dark mode toggle const toggleBtn = document.getElementById("dark-mode-toggle"); toggleBtn.addEventListener("click", () => { document.body.classList.toggle("dark-mode"); localStorage.setItem("theme", document.body.classList.contains("dark-mode") ? "dark" : "light"); }); window.addEventListener("load", () => { if (localStorage.getItem("theme") === "dark") { document.body.classList.add("dark-mode"); } });