.history__title {
    font-family: raleway;
    font-size: 3rem;
    color: rgba(202, 232, 95, 0.521);
    text-align: center;
    padding: 40px 0;
}

.text {
    font-size: 2rem;
    width: 80%;
    text-align: justify;
    margin: auto;
}

.text b {
    color: gray;
}

.explanation {
    color: darkslategray;
    font-weight: bolder;
    font-style: 2.5rem;
}


.history-container {    
    width: 100%;    
    margin: 100px auto;
    padding: 30px 0;
    background-color: rgba(119, 116, 116, 0.251);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 50px;    
}

.history-map {
    font-size: 1rem;
}

#map {
    height: 500px;    
    cursor: pointer;
    border-radius: 3px;
    box-shadow: 10px 10px 25px rgba(24, 24, 24, 0.966);    
}

.timeline {
    width: 400px;
}

.timeline__content {
    color: black;
    font-size: 14px;
    color: #20b2aa;
}

@media (max-width: 690px) {
    .history-container {
        flex-direction: column;
    }

    .title {
        font-size: 2rem;
        width: 90%;
    }

    .text {
        text-align: left;
    }

    .text_container {
        display: none;
    }

    .timeline {
        width: 80%;
        margin: 0 auto;
    }

    .timeline__item__inner {
        width: 240px;
    }
}


