body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, #ff9a00, #ffb347);
    margin: 0;
    padding: 0;
    color: #333;
}

header {
    background-color: #004080;
    color: #fff;
    padding: 20px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

header p {
    font-size: 1.2em;
    margin-top: 10px;
}

.timeline {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.timeline-item {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin: 20px 0;
    padding: 20px;
    width: 85%;
    transition: transform 0.3s ease;
}

.timeline-item h2 {
    color: #ff8008;
    margin-bottom: 15px;
    text-align: center;
}

.event {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.event img.flag {
    width: 40px;
    height: 28px;
    margin-right: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.event-details {
    flex-grow: 1;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 10px;
    border-radius: 8px;
}

.event-details strong {
    font-size: 1.1em;
}

.event-details span {
    font-weight: bold;
    color: #004080;
}

.timeline-item:hover {
    transform: scale(1.05);
}
