* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f5f5f5;
    color: black; 
    height: 100vh;
}

section {
    padding: 1rem 3rem;
 
}

.scroll-indicator {
    height: 10px;
    width: calc(100% - 6em);
    top : 10px;
    left : 3em;
    border-radius: 5px;
    position: fixed;

}

.progress {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #ff105f, #ffad06);
    border-radius: 5px;
    transition: width .1s;
}