body{
    font-family: Arial, sans-serif;
    height: 100vh;
    padding: 0;
    margin: 0;
    color:white

}

section{
    background: linear-gradient(20deg, #0f1c2e, #103161);  
    position: relative;
    height: 100vh;
}

.name{
    padding: 0%;
    padding-left: 2rem;
    margin-top: 0;
    font-family: 'Poppins', sans-serif;
    color:rgb(255, 255, 255) ;
    font-size: 50px;
    white-space: nowrap;
    width: 10%;
    padding-top: 2rem;
    text-decoration: none;
}

.timer {
    text-align: center;
    font-size: 10rem;
    margin: 0rem 0;
    padding-top: 14rem;
}

@media (max-width: 768px) {
    .timer {
        font-size: 5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .timer {
        font-size: 3rem;
        text-align: center;
    }
}

.progress-container {
    width: 80%;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    position: absolute;
    transform: translate(12%);
}

.progress-bar {
    height: 100%;
    background-color: white;
    width: 0%;
    border-radius: 10px;
    transition: width 0.5s linear;
}

.percentageDone{
    font-size: 5rem;
    text-align: center;
    margin-top: 4rem;
}

.percentageDoneUnrounded{
    font-size: 5rem;
    text-align: center;
    padding: .5rem;
}
