★ Welcome to My Site ★

About This Place

This site is my digital corner — a mix of projects, thoughts, and experiments. Built with love, red pixels, and too much caffeine ☕.

Logo

Feel free to explore, and don’t forget to check out my other pages.

/* --- Global Styles --- */ @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap'); body { background-color: #0b0b0b; color: #f2f2f2; font-family: 'Orbitron', sans-serif; margin: 0; padding: 0; background-image: radial-gradient(circle at top left, #330000, #000000 80%); background-attachment: fixed; } /* --- Wrapper --- */ .wrapper { max-width: 900px; margin: 40px auto; border: 2px solid #ff0000; border-radius: 12px; background-color: rgba(0, 0, 0, 0.85); box-shadow: 0 0 30px #ff000044; padding: 20px; } /* --- Header --- */ header { text-align: center; border-bottom: 2px solid #ff0000; padding-bottom: 15px; margin-bottom: 25px; } header h1 { font-size: 2em; color: #ff1a1a; text-shadow: 0 0 10px #ff0000, 0 0 20px #660000; margin: 0; } nav { margin-top: 10px; } nav a { color: #f2f2f2; text-decoration: none; margin: 0 10px; padding: 5px 10px; border: 1px solid #ff0000; border-radius: 6px; transition: all 0.3s ease; } nav a:hover { background-color: #ff0000; color: #000; box-shadow: 0 0 10px #ff0000; } /* --- Main Content --- */ main { text-align: center; } main h2 { color: #ff0000; text-shadow: 0 0 10px #ff0000; } .featured-img { width: 200px; margin: 20px auto; display: block; border: 2px solid #ff0000; border-radius: 10px; box-shadow: 0 0 20px #ff000044; } /* --- Footer --- */ footer { text-align: center; margin-top: 30px; border-top: 2px solid #ff0000; padding-top: 10px; font-size: 0.9em; color: #999; } /* --- Extra Touches --- */ a { transition: 0.3s ease; } ::selection { background: #ff0000; color: #000; }