
canvas { 
    display:block;
    width:100%; 
    margin:0; 
    padding:0;
}

.timeline-headline {
    z-index: 100;
    font-family: serif;
    color: rgba(10,10,10,0.1);
    font-weight: bold;
    user-select: text; /* Make text selectable */
    pointer-events: auto;
    -webkit-text-stroke: 1px white;
}

.timeline-subheadline {
    color: #fff;
    font-family: sans-serif;
    font-weight: 18;
    letter-spacing: 1px;
    line-height: 1em;
    margin-top: 5%;
}

.timeline-beat {
    color: white;
    z-index: 100;
    user-select: text; /* Explicitly enable text selection */
}

/* Only disable pointer events on the container if necessary */
.timeline-container {
    pointer-events: none;
}

/* But enable pointer events on the text elements themselves */
.admin-beat .beat-year,
.admin-beat .beat-title,
.admin-beat .beat-description,
.nature-beat .beat-year,
.nature-beat .beat-title,
.nature-beat .beat-description,
.social-beat .beat-year,
.social-beat .beat-title,
.social-beat .beat-description {
    pointer-events: auto;
}

.admin-beat .beat-year,
.nature-beat .beat-year,
.social-beat .beat-year  {
    margin-bottom: 5px;
}

.admin-beat .beat-title {
    font-family: serif;
    color:orangered;
    font-size: 0.75em;
    line-height: 1.0;    
    margin-bottom: 5px;
}
.nature-beat .beat-title {
    font-family: serif;
    color: aquamarine; /* Example color for nature */
    font-size: 0.75em;
    line-height: 1.0;
    margin-bottom: 5px;
}

.social-beat .beat-title {
    font-family: serif;
    color: pink; /* Example color for social */
    font-size: 1.0em;
    line-height: 1.0;
    margin-bottom: 5px;
}


.admin-beat .beat-description {
    
    font-size: 0.75em;
    line-height: 1.0;
}

.nature-beat .beat-description {
    font-size: 0.75em;
    line-height: 1.0;
}

.social-beat .beat-description {
    font-size: 0.75em;
    line-height: 1.0;
    /*margin-top: 30px;*/
}

@media (max-width:1024px){
    .admin-beat .beat-description {
        
        font-size: 0.5em;
        line-height: 1.0;
    }

    .nature-beat .beat-description {
        font-size: 0.5em;
        line-height: 1.0;
    }

    .social-beat .beat-description {
        font-size: 0.5em;
        line-height: 1.0;
        /*margin-top: 30px;*/
    }
}