*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    
}

header {
    height:50px;
    width:100%;
    background-color:black;
    text-decoration-line:overline;
}
main{
    display:flex;
    align-items:center;
    justify-content:center;
    height:80vh;
    
}
.main-container{
    overflow:hidden;
    height:300px;
    width:200px;
    background-color:lemonchiffon;
    border-radius:20px;
    border:3px solid black;
}
#inp {
    display:none;
    width:100%;
    background-color:aqua;
    height:100px;
    
}
#label-for-file{
    height:20px;
    width:150px;
    text-align:center;

    
}
#div-for-file-label{
    border-bottom:3px solid blue;
    display:flex;
    align-items:center;
    justify-content:center;
    height:100px;
    width:100%;
    background-color:#2cdb8c;
    cursor:pointer;
}
#btn{
    width:100%;
    height:30px;
    border-radius:0;
    border:1px solid blue;
}
#select-for-input-file{
    width:100%;
    border-radius:0;
    border:1px solid blue;
}
#users-result{
    background-color:#ffe08c;
    height:100%;
    width:300px;
    color:blue;
    display:flex;
    /* justify-content:center; */
    
    

}




.usersOutputDiv{
    /* overflow:visible; */
    height:20px;
    width:40px;
    background-color:#90a4de;
    font-size:3px;
    border: 2px solid blue;
    border-radius:4px;
    font-size:5px;
    /* overflow:scroll; */
}

