body {
	background-color: #111; /* Darker background for a more cyberpunk feel */
	color: #f5f5f5; /* Slightly off-white color for text, easier on the eyes */
	font-family: 'Courier New', Courier, monospace;
}

.glow-text {
	color: #ff2079; /* Neon red-pink color */
	text-shadow: 0 0 5px #ff2079, 0 0 10px #ff2079; /* Stronger red glow */
}

a.glow-text {
	color: #ff2079; /* Consistent neon red-pink color for links */
	text-decoration: none;
}

a.glow-text:hover {
	color: #26c6da; /* Teal hover color for contrast */
	text-shadow: 0 0 5px #26c6da, 0 0 10px #26c6da; /* Stronger teal glow on hover */
}
/* Gallery Grid */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-gap: 10px;
    padding: 20px;
}

.grid-item img {
    width: 100%;
    height: auto;
    border-radius: 5px; /* Optional: for rounded corners */
}