.bungee-tint-regular {
    font-family: "Bungee Tint", sans-serif;
    font-weight: 400;
    font-style: normal;
  }



  :root{
    --line-border-fill: #9c27b0;
    --line-border-empty: #bdbdbd;
  }
*{ 
 box-sizing: border-box;
}
body{
    background-color: #ffffff;
    font-family: "Mulish", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
    margin: 0;
}

h1{
    color: #212121;
    margin-bottom: 90px;
}

i{
    font-size: 2.8rem;
}

.bxl-html5{
    color: #ff5773;
}
.bxl-css3{
    color: #264de4;
}
.bxl-javascript{
    font-size: 2.6rem;
    color: #f7e018;
}
.bxl-react{
    color: #61dbfb;
}
.container{
    text-align: center;
}
.progress-container{
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 40px;
    max-width: 100%;
    width: 450px;
}
.progress-container::before{
    content: "";
    background-color: var(--line-border-empty);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 4px;
    width: 100%;
    z-index: -1;
    transition: 0.4 ease;
}
.progress{
    background-color: var(--line-border-fill);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 4px;
    width: 0%;
    z-index: -1;
    transition: 0.4s ease;
}
.circle{
    background-color: white;
    color: #999;
    border-radius:65px;
    width: 65px;
    height: 65px;
    border: 3px solid #b2bec3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease;
}
.circle.active{
    border-color: var(--line-border-fill);
}
.btn{
    background-color: var(--line-border-fill);
    color: #ffff;
    border-radius: 6px;
    border: 0;
    cursor: pointer;
    font-family: inherit;
    padding: 8px 30px;
    margin: 5px;
    font-size: 18px;
}

.btn:focus{
    outline: 0;
}
.btn:active{
    transform: scale(0.97);
}
.btn:disabled{
    background-color: var(--line-border-empty);
    cursor: not-allowed;
}