body{
    height: 90vh;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    position: relative;
    display: inline-block;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
}

#line {
    position: relative;
    width: 100%;
    /* border: 5px solid white; */
    border-radius: 5px;
}

.dots{
    position: absolute;
    height: 25px;
    width: 89%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    bottom: 15.5%;
    left: -0.7%;
    z-index: 10;
}

.dot:nth-child(1){
    margin-left: 5px;  
}

.dot {
    position: relative;
    width: 2.2%;
    border-radius: 50%;
    background-color: #0075bf;
}

.dot.active{
    background-color: white;
}

.dot .time{
    position: absolute;
    width: max-content;
    color: white;
    font-size: 1.1vw;
    bottom: -100%;
    left: -25%;
    font-family: 'poppins';
    text-align: center;
}

.tunnels{
    position: absolute;
    height: 25px;
    width: 84%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    bottom: 15.5%;
    left: 2.1%;
}

.tunnel{
    position: relative;
    width: 5%;
    background-color: #0075bf;
}

.tunnel.active{
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%{
        background-color: #0075bf;
    }
    50%{
        background-color: white;
    }
    100%{
        background-color: #0075bf;
    }
}

