*{
    padding: 0;
    box-sizing: border-box;
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.main{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e9ecfd;
}

.container{
    padding: 30px 50px;
    min-width: 35vw;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0px 5px 20px rgb(160, 160, 189);
    border-radius: 7px;
}

.container img{
    width: 70px;
}

.heading{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.heading p{
    color: #808291;
}

.container .numberOfPeople,button{
    width: 100%;
    height: 45px;
    margin-top: 20px;
    border-radius: 7px;
   
}

.container .numberOfPeople{
    border: 2px solid rgb(218, 217, 230);
     display: flex;
    align-items: center;
    padding: 10px;
    gap: 10px;
    
}

.numberOfPeople i{
    color: #808291;
}

.container .numberOfPeople input{
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    background-color: transparent;
    font-size: 16px;
   
}

.container button{
    background-color: #7f62fd;
    color: white;
    border: none;
    outline: none;
    font-size: 16px;
    cursor: pointer;
}

button:active{
    scale: 0.98;
}


.person{
width: 100%;
  font-size: 17px;
  margin-top: 15px;
}

.person input{
    height: 40px;
    border-radius: 7px;
    border: none;
    outline: none;
    padding: 10px;
    font-size: 17px;
}

.totalExpense{
    margin-top: 15px;
}

#result{
    width: 100%;
}

#result span{
    font-weight: bold;
}