html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), /* Darken overlay */
        url('../images/background4.jpg'); /* Background image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Keeps background fixed */
    min-height: 100vh; /* Ensures it spans at least the full viewport */
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000000;
}

.history {
    max-width: 900px;
    margin: 50px auto;
    padding: 30px;
    background-color: #0000005b;
    border-radius: 10px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.history h1 {
    font-size: 2em;
    color: #ffffff;
    margin-bottom: 20px;
}

.history p {
    font-size: 1.15em;
    color: #fff6f6cc;
    margin-bottom: 40px;
    line-height: 1.6;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0;
    list-style: none;
}

.timeline-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 15px;
    background-color: #00000063;
    border-left: 6px solid #0073e6;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.timeline-item:hover {
    background-color: #000000;
    transform: translateX(5px);
}

.timeline-date {
    font-weight: bold;
    color: #0073e6;
    width: 120px;
    flex-shrink: 0;
    font-size: 1.1em;
    text-align: left;
}

.timeline-content {
    flex-grow: 1;
    margin-left: 20px;
}

.timeline-content h2 {
    margin: 0;
    font-size: 1.4em;
    color: #ffffffe7;
    font-weight: 600;
}

.timeline-content p {
    margin: 8px 0 0;
    color: #ffffffb2;
    font-size: 1.1em;
    line-height: 1.6;
}