@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;1,300;1,600;1,700&display=swap');

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

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #242424;
    flex-direction: column;
    background-image: url(image.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 350px;
    background-color: rgb(18, 101, 134);
    width: 100%;
    padding: 35px;
    border-radius: 10px;
}

.container .input_box input {
    max-width: 100px;
    height: 45px;
    border-radius: 8px;
    outline: none;
    text-align: center;
    border: none;
    font-size: 18px;
    color: #000000;
}

#icon {
    color: #000000;
    font-size: 24px;
    margin-top: 20px;
}

.container .input_box h6 {
    font-size: 14px;
    color: #000000;
    font-weight: 400;
    margin-bottom: 8px;
}

.input_box ::-webkit-inner-spin-button,
.input_box ::-webkit-outer-spin-button {
    display: none;
}

.calculation {
    margin-top: 20px;
    text-align: center;
    color: #fff0f0;
    justify-content: space-between;
}

.calculation h6 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
}

.calculation p {
    font-size: 18px;
    font-weight: 300;
}