body {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow-y: hidden;

}

.timeline { 
    position: absolute;
    display: flex;
    text-align: center;
    bottom: 0;
    width: 100%;
}

.image-details {
    display: none;
    font-size: 18px;
}

#overlay {
    opacity: 0; 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fffa;
    z-index: -1;
    transition: opacity .2s ease-in-out;
}

#overlay.overlay-hover {
    opacity: 1;
    z-index: 3;
}

#finish { 
    background: #DBE0E6;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 5;
    opacity: 0;
    transition: opacity .2s ease-in-out;
    display: none;
}

#finish.finish-active {
    opacity: 1;
    display: block;
}

.text-finish a {
    position: absolute;
    width: 35px;
    height: 35px;
    right: 10px;
    top: 10px;
}

.text-finish { 
    background: #fff;
    box-sizing: border-box;
    border:  black solid 1.5px;
    border-radius: 30px;
    text-align: center;
    position: absolute;
    left: 50%;
    width: 700px;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    padding: 50px;
    font-size: 30px;

}

.text-timeline h1 { 
    font-size: 90px;
    right: -500px;
    top: -50px;
    position: relative;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    display: inline-block;
    white-space: nowrap;
}

.timeline p.style {
    font-size: 25px;
    font-weight: bold;
    text-transform: uppercase;
}

.timeline p.date {
    font-size: 17px;
    font-weight: bold;
    text-transform: uppercase;
}

.timeline-segment {
 flex: 1; 
 text-align: center;
 color: #fff;
 padding: 50px 25px;
 position: relative;

}

.timeline img {
    width: 174px;
    border-radius: 35px;
    filter: grayscale();
    object-fit: cover;
    height: 265px;
    /* position: absolute; */
    /* top: -450px;
    left: 50%;
    transform: translateX(-50%);   */
   z-index: 2;
}

.timeline a:hover {
    top:-410px;
    transform: scale(3.25);
    z-index:4;
}

.timeline-segment.ballet a:hover {
    left: 75%;
}

.timeline-segment a {
    position: absolute;
    top: -450px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
   transition: transform .2s ease-in-out, top .2s ease-in-out, left .2s ease-in-out; 
}

.timeline-segment a > div{
    position: absolute;
    top: 0;
    width: 100%;
    transition: opacity .2s ease-in-out;
    opacity: 0;
}

.timeline-segment a p {
    font-weight: bold;
    color:#eee;
    text-shadow: 1px 1px black;
    
}

.timeline-segment a h3{
    color: #eee;
-webkit-text-stroke-width: 1px;
-webkit-text-stroke-color: #2A3964; 
}


.timeline-segment a p {
    font-size: 10px;
}

.timeline-segment a:hover > div {
    opacity: 1;
}

.timeline-segment.hip-hop a:hover {
    left: -50%;
}

.line { 
    position: absolute;
    width: 2px;
    height: 185px;
    background: black;
    top: -185px; 
    left: 50%;
    transform: translateX(-50%);
}

.ballet {
    background: #A5A5A5;
}

.african { 
    background: #5A5959;
}
.latin { 
    background: #333232;
}

.jazz {
    background: #242323;
}

.modern { 
    background: #141414;
    padding:50px 15px;
}

.hip-hop {
    background: #000;
    padding: 50px 15px;
}

.responsive {
    display: none;
}