/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0f0c29; /* Dark purple/blue background */
    /* Optional subtle gradient: */
    /* background: linear-gradient(to bottom, #0f0c29, #302b63, #24243e); */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Ensure content centers vertically */
    font-family: 'Roboto', sans-serif; /* Fallback font */
    color: #e0e0e0; /* Light text color */
}

.tribute-container {
    text-align: center;
    padding: 40px 20px;
    background-color: rgba(0, 0, 0, 0.2); /* Slightly transparent overlay */
    border: 3px solid #0ff; /* Neon cyan border */
    box-shadow: 0 0 20px #0ff; /* Neon cyan glow */
    max-width: 600px; /* Limit width */
}

h1 {
    font-family: 'Press Start 2P', cursive; /* 80s Pixel Font */
    color: #f0f; /* Neon Magenta */
    font-size: 2.5rem; /* Adjust size as needed */
    text-shadow: 3px 3px #0ff; /* Cyan shadow for effect */
    margin-bottom: 10px;
}

.dates {
    font-family: 'Press Start 2P', cursive;
    color: #fff; /* White or light grey */
    font-size: 1rem;
    margin-bottom: 30px;
}

.tribute-photo {
    display: block;
    margin: 0 auto 30px auto; /* Center image and add space below */
    max-width: 80%; /* Responsive image size */
    height: auto;
    border: 5px solid #fff; /* White border */
    box-shadow: 0 0 15px #fff; /* White glow */
}

.message {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ccc; /* Slightly dimmer text */
}