*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    height: 100vh;
    min-height: 100vh;
    width: 100vw;
    min-width: 100vw;

    font-family: Arial, Helvetica, sans-serif;

    display: flex;
    justify-content: center;
    align-items: center;
}

.background {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: -1;
    background-image: 
        radial-gradient(circle at 15% 40%, rgba(255, 138, 0, 0.08) 0%, transparent 35%),
        radial-gradient(circle at 85% 65%, rgba(255, 138, 0, 0.06) 0%, transparent 35%),
        radial-gradient(circle at top, #1d1f28 0%, #14161d 60%, #0d0f15 100%);
}

.container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;

    width: 80%;
    max-width: 900px;

    background-color: #2b2f40;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.3rem;
}

.headbox{
    padding: 1rem;
    width: 90%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo{
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.logo .a , .b{
    font-size: 1.5rem;
    color: white;
}

.logo .b{
    color: #f8c058;
}

.logo img{
    height: 3.2rem;
    width: 3.2rem;
}

.searchbar{
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 0.2rem;
    width: 60%;
}

#user-input{
    border: none;
    background-color: #4c526c;
    border-radius: 5px;
    min-width: 9rem;
    width: 75%;
    min-height: 1.6rem;
    padding: 0.4rem;
    color: white;
}

#submit-button{
    border: 1px solid #f8c058;
    background-color: #4c526c;
    color: #f8c058;
    padding: 0.5rem 0.7rem;
    border-radius: 6px;
    cursor: pointer;
}

#submit-button:disabled{
    opacity: 0.6;
    cursor: not-allowed;
}

::placeholder{
    color: rgba(255, 255, 255, 0.647);
}


.userdata{
    display: flex;
    flex-direction: column;
    height: 70%;
    width: 95%;
    background-color: #4c526c;
    border-radius: 15px;
}

.piecharts{
    width: 100%;
    padding: 1rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 0.4rem;
    color: white;

}

.circle{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    font-family: 1.3rem;
    height: 10rem;
    width: 10rem;
    border: 3px solid #2b2f40;
    border-radius: 50%;
}

.c1{
    background-image: conic-gradient(#1eba5a var(--easyProgress,40%), #2b2f40 0%);
    
}

.c2{
    background-image: conic-gradient(#d6c02b var(--mediumProgress,40%), #2b2f40 0%);
}


.c3{
    background-image: conic-gradient(#cd2020 var(--hardProgress,40%), #2b2f40 0%);
}



































.footbox{
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    margin: 1rem;
}

.footbox img{
    height: 1rem;
    width: 1rem;
}

.footbox p{
    text-align: center;
    font-size: 1rem;
    color: rgb(180, 178, 178);
}

