* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0D0D0D;
    font-family: 'Arial', sans-serif;
    color: #00FF00;
}

.container {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.title {
    font-size: 3rem;
    margin-bottom: 50px;
    color: #00FF88;
    animation: fadeInTitle 2s ease-in-out;
}

.timeline {
    position: relative;
    margin: 0 auto;
    padding: 10px 0;
    width: 80%;
}

.timeline-item {
    background-color: #1E1E1E;
    border: 2px solid #00FF00;
    border-radius: 10px;
    margin-bottom: 40px;
    padding: 20px;
    box-shadow: 0px 0px 20px rgba(0, 255, 0, 0.5);
    transition: all 0.3s ease-in-out;
    position: relative;
}

.timeline-item:hover {
    transform: translateY(-10px);
    box-shadow: 0px 0px 30px rgba(0, 255, 0, 0.8);
}

.timeline-date {
    font-size: 1.3rem;
    font-weight: bold;
    color: #00FF88;
    margin-bottom: 10px;
}

.timeline-content h2 {
    color: #00FF88;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 1rem;
    color: #D4FFD4;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

@keyframes fadeInTitle {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
