* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

html {
    height: 100%;

}


body {
    min-height: 100%;
    display: flex;

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

main {

}

.input {

}

.input h1 {
    margin-bottom: 15px;
    font-size: 18px;
}

.input div {
    display: flex;
    height: 50px;
    
}


.input div input {
    padding: 15px;
    height: 100%;
    width: 300px;
    margin-right: 7px;
    background: #f1f1f1;
    border: 1px solid black;


}

.input div button {
    height: 100%;
    width: 50px;
    font-size: 30px;
    background: black;
    color:white;
    border: none;
    cursor: pointer;
}

.divider {
    background: #c4c4c4;
    height: 2px;
    width: 100%;
    margin: 40px 0px;
} 

.list ul {
    list-style: none;
    
}

.list li {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;

}

.list div label {
    /* font-weight: bold; */
    margin-left: 5px;
}

.list li span {
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #373737;
        border-radius: 50%;
        color: #dddddd;
        line-height: 0px;
        cursor: pointer;

}
