@import url('https://fonts.googleapis.com/css2?family=Play:wght@400;700&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Play", sans-serif;
}
body{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #57454547;
}
.container{
    width: 40%;
    /* max-width: 600px; */
    background:rgba(87, 77, 77, 0.285);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-radius: 1.7rem;
}
.user-container{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    /* justify-content: start; */
}
.user-input-container{
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
}
#user-text{
    width: 80%;
    padding: .5rem;
    border-radius: .2rem;
    border: none;
}
#search-btn{
    padding: .5rem;
    border-radius: .2rem;
    border: none;
    background: #000;
    color: white;
    transition: all ease .5s;
}
#search-btn:hover{
    background: whitesmoke;
    color: #000;
}
.circle{
    height: 120px;
    width: 120px;
    border-radius: 50%;
    background: conic-gradient(#1CBABA var(--progress-degree, 0%), #264545 0%);
    border: 4px solid #1CBABA;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    flex-direction: column;
}
.med{
    border: 4px solid #FFB700;
    background: conic-gradient(#FFB700 var(--progress-degree, 0%), #534520 0%);
}
.hard{
    border: 4px solid #F63737;
    background: conic-gradient(#F63737 var(--progress-degree, 0%), #512B2B 0%);
}
.progress{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}