*{
    padding : 0;
    margin : 0;
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;
}

body{
    background: #bdc3c7;
    background: -webkit-linear-gradient(to bottom, #2c3e50, #bdc3c7);
    background: linear-gradient(to bottom, #2c3e50, #bdc3c7);
    width: 100vw;
    height: 100vh;
    color : aliceblue;
    display: flex;
    justify-content: center;
    align-items: center;
}
.container{
    display: flex;
    flex-direction: column;
    gap : 1rem;
    background-color: #bcdbf15a;
    padding : 20px;
    border-radius: 10px;
    width : 40%;
    max-width: 700px;
    box-shadow: 5px 5px 10px white, -5px -5px 10px white;
}
h1{
    font-size: 2rem;
}   
.user-container{
    display: flex;
    flex-direction: column;
    gap : 10px;
    justify-content: start;
}
.user-input-container{
    display: flex;
    justify-content: space-between;
}
#user-input{
    width: 70%;
    height : 30px;
    padding : 0.2rem;
    border-radius: 10px;
}
#search-btn{
    width: 100px;
    border-radius: 10px;
    padding : 0.2rem;
}
.circle{
    height : 120px;
    width : 120px;
    border-radius: 50%;
    border : 4px solid #299f5d;
    position : relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    background: conic-gradient(#299f5d var(--progress-degree, 0%),#283a2e 0%);
}
.progress{
    display: flex;
    justify-content: space-evenly;
    gap : 8px;
    flex-wrap: wrap;
}
.easy-progress{
    display: flex;
    flex-direction: column;
}
.medium-progress{
    display: flex;
    flex-direction: column;
}
.hard-progress{
    display: flex;
    flex-direction: column;
}
@media screen and (max-width : 390px){
    .container{
        width: 100%;
        
    }
}
@media screen and (max-width : 414px){
    .container{
        width: 100%;
        
    }
}
@media screen and (max-width : 430px){
    .container{
        width: 100%;
        
    }
}
