/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    color: #ffffff;
    background-color: #0b0c1e; /* Space-dark background */
    margin: 0;
    padding: 0;
}

/* Header */
header {
    text-align: center;
    padding: 20px;
    background: linear-gradient(90deg, #1c1f47, #0b0c1e);
    border-bottom: 1px solid #444;
}

header h1 {
    font-size: 2.5em;
    color: #ffd700; /* Golden title */
}

/* Timeline */
.timeline {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.timeline-item {
    background: rgba(255, 255, 255, 0.1);
    margin: 20px 0;
    padding: 15px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.timeline-item img {
    width: 100%;
    max-width: 250px;
    border-radius: 10px;
    object-fit: cover;
}

.timeline-item .content {
    flex: 1;
}

.timeline-item h2 {
    margin: 0 0 10px;
    color: #ffd700;
}

.timeline-item p {
    margin: 0;
    line-height: 1.5;
}

/* Footer */
footer {
    text-align: center;
    padding: 10px;
    background: linear-gradient(90deg, #0b0c1e, #1c1f47);
    font-size: 0.9em;
    color: #888;
    margin-top: 20px;
}
