:root{
    --first-color: #4070F4;
    --second-color: #0E2431;
  }

  :root{
    --body-font: 'Poppins', sans-serif;
    --big-font-size: 2rem;
    --h2-font-size: 1.25rem;
    --normal-font-size: 0.938rem;
  }
#progress-cont {
    position: fixed;
    top: 0;
    right: 0;
    width: 6px;
    height: 100%;
    z-index: 100;
    background: rgba(255, 255, 255, 0.05);
}

#progress-bar {
    position: fixed;
    top: 0;
    right: 0;
    width: 6px;
    z-index: 100;
    background: linear-gradient(to top, #008aff, #00ffe7);
}
.event{
    margin-top: 15px;
       padding: 15px;
       width: auto;
}

.event__subtitle{
    color: var(--first-color);
    text-align: center;
    margin: 25px 0px 10px;
}

.vignite__image img{
    display: block;
    margin: auto;
    width: 80%;
    border-radius: 7px;
}


@media screen and (min-width: 768px){

    .event{
       margin-top: 50px;
       padding: 40px;
       width: auto;
    }
    
    .event__subtitle{
        color: var(--first-color);
        text-align: center;
        margin: 0px 0px 30px;
    }
    
    .vignite__image img{
        display: block;
        margin: auto;
        width: 80%;
        border-radius: 10px;
    } 

}