body{
    background-image: url(../img/fondo.png);
}
.d-flex{
    display: flex;
}

.d-col{
    display: flex;
    flex-direction: column;
}

.mr-10{
    margin-right: 10px;
}

#scrollToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    color: #f04f48;
    background-color: transparent;
    font-weight: bold;
    border: 2px solid #f04f48;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    padding: 15px;
    font-size: 24px;
    cursor: pointer;
    z-index: 100;
    transition: opacity 0.3s ease;
}


#scrollToTopBtn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(240, 79, 72, 0.5);
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    animation: radar-blur 2s infinite;
    z-index: -1;
}

#scrollToTopBtn:hover {
    cursor: pointer;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(95, 173, 169, 0.5);
    z-index: 1;
}
.title-text {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}
.title-text-1 {
    background-color: #5aa07aa6;
    padding: 10px 20px;
    border-radius: 25px;
    height: 60px;
    align-items: center;
    display: flex;
    justify-content: center;
    font-size: calc(1.5rem + 1vw);
}
.timeline-container {
    text-align: center;
}
.timeline-header{
    color: white;
    padding: 140px 20px;
    font-size: 36px;
    font-weight: bold;
    position: relative;
}
.header{
    color: white;
    padding: 140px 20px;
    font-size: 36px;
    font-weight: bold;
    position: relative;
}
.regresar {
    background-color: #f04f48;; 
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    margin: 0 10px;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
}
@keyframes radar-blur {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    80% {
        opacity: 0;
    }

    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}
@media(max-width:600px){
    .title-text-1{
        font-size: calc(1.4rem + 1vw);
        height: 45px;
    }
}