* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Times New Roman', serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #333;
    min-height: 100vh;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    color: white;
    padding: 40px 20px;
}

header h1 {
    font-size: 3em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.subtitle {
    font-size: 1.2em;
    opacity: 0.95;
}

main {
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

section {
    margin-bottom: 40px;
}

section h3 {
    color: #764ba2;
    font-size: 1.8em;
    margin-bottom: 20px;
    text-align: center;
}

.hero {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    border-radius: 8px;
}

.hero h2 {
    font-size: 2.5em;
    color: #764ba2;
    margin-bottom: 15px;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.event {
    padding: 20px;
    background: #f8f9fa;
    border-left: 4px solid #667eea;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.event:hover {
    transform: translateX(10px);
}

.event h4 {
    color: #764ba2;
    margin-bottom: 10px;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.photo-placeholder {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2em;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.photo-placeholder:hover {
    transform: scale(1.05);
}

footer {
    text-align: center;
    padding: 20px;
    color: white;
    font-size: 1.1em;
}

@media (max-width: 600px) {
    header h1 {
        font-size: 2em;
    }
    
    main {
        padding: 20px;
        
        
    }
}