* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
}

.preloader {
    width: 100%;
    height: 100vh;
    background: url(main.gif);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.calculator {
    height: 100vh;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #848be9;
}

.tip-container {
    width: 300px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    background-color: #242235;
    gap: 20px;
    border-radius: 10px;
}

p {
    color: white;
}

input {
    background-color: #313554;
    outline: none;
    border: none;
    border-radius: 10px;
    width: 100%;
    height: 30px;
    color: white;
    padding: 3px 10px;
}

.input-rupee {
    display: flex;
    align-items: center;
    background-color: #313554;
    border-radius: 10px;
    height: 30px;
    margin-top: 10px;
}

.rupee {
    margin-left: 10px;
}


.bill-input,
.tip-input {
    width: 100%;
}

button {
    background-color: #8a8cf2;
    border-radius: 50%;
    height: 25px;
    width: 25px;
    border: none;
    outline: none;
}


.people-people_total {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.people-number {
    width: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.people-number,
.total-person-amount {
    margin-top: 10px;
}

.input-head {
    font-weight: 600;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

.calculator {
    display: none;
}