/* General Page Styles */
body,
html {
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    margin: 0;
    color: #fff;
    background: #2F519F;
    font-family: Arial, sans-serif;
}

header {
    padding: 2vh 1vw;
    text-align: center;
}

header h3 {
    font-size: 1.5vw;
}

/* Timeline Styles */
#timeline {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 2vw;
}

.year {
    text-align: center;
    cursor: pointer;
    color: #808080;
    transition: opacity 0.3s;
}

.year img {
    width: 8vw;
    height: auto;
}

.year p {
    font-size: 1.5vw;
}

.year:hover {
    opacity: 0.7;
    color: #fff;
}

.year.active {
    font-weight: bold;
    color: #fff;
    opacity: 1 !important;
}

/* Slider Styles */
#slider {
    overflow: hidden;
    position: relative;
    height: 47vh;
    margin: 20px auto;
}

#slider .slide-wrapper {
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100%;
    height: 50vh;
}

#slider .slide {
    flex-shrink: 0;
    width: auto;
    /* Set width to auto so each slide only takes up as much space as needed */
    margin-right: 10px;
    /* Optional space between slides */
}

.slick-list {
    padding: 0 20% 0 20% !important;
}


.slide-wrapper .slide {
    opacity: 0.5;
    transition: opacity 0.5s ease;
}

.slide-wrapper .slide img {
    height: 25vh;
    max-width: 50vw;
    display: block;
    object-fit: contain;
    margin: 0 auto;
}

.slide-wrapper .slick-center {
    opacity: 1;
    /* Make the center slide fully visible */
}

/* Footer Styles */
.footerLogo {
    text-align: center;
    color: black;
    font-size: 4.7vh;
    margin-bottom: 0px;
}

footer h3 {
    text-align: center;
    margin-top: 0px;
}

.emilHighlight {
    color: white;
    font-size: 7vh;
    font-weight: bold;
}

#part1 {
    max-height: 30vh;
}

footer {
    max-height: 18vh;
}

a {
    text-decoration: none;
    color: white;
}