.timeline {
    width: 70%;
    margin: 50px auto;
    text-align: center;
    position: relative;
    font-family: 'Arial', sans-serif;
}
.timeline h2 {
    font-size: 2rem;
    font-weight: bold;
    border-bottom: 1px solid #444;
    display: inline-block;
    margin-bottom: 30px;
    padding: 5px 15px;
    letter-spacing: 1.5px;
    color: #444;
}
.timeline-container {
    display: flex;
    flex-direction: column;
    gap: 100px;
    position: relative;
}
.timeline-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
}
.timeline-dot {
    width: 12px;
    height: 12px;
    background-color: #444;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.timeline-line {
    position: absolute;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color: #ddd;
    z-index: 1;
    transform: translateX(-50%);
}
.timeline-year {
    position: absolute;
    font-size: 1rem;
    font-weight: bold;
    color: #444;
    left: calc(50% + 20px);
    transform: translateY(-50%);
    margin-top: 20px;
}
.timeline-content {
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: left;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 50%;
    margin-left: calc(53% + 80px);
}
.timeline-content h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #444;
}
.timeline-content p {
    font-size: 1rem;
    color: #555;
    margin: 0;
}
.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: calc(50% + 40px);
    text-align: right;
}
.timeline-item:nth-child(odd) .timeline-year {
    left: calc(50% - 40px);
}
body {
    margin: 0;
    padding: 0;
    background-image: url(../imgs2/image.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.floating-nav {
    position: absolute;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    background: rgba(108, 208, 133, 0.8);
    padding: 10px 30px;
    border-radius: 30px;
    font-family: -apple-system, BlinkMacSystemFont, "San Francisco", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 10px;
}
.nav-links li {
    font-size: 1rem;
    font-weight: bold;
}
.nav-links a {
    text-decoration: none;
    color: rgba(37, 37, 37, 0.685);
    padding: 10px 15px;
    border-radius: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}
#GALLERY h1 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #242424;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    font-weight: bold;
    font-size: 4rem;
}