body {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin: 0;

}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

.container {
    margin: 0 auto;
}

label {
    display: block;
    margin-bottom: 10px;
    margin-top: 10px;
}

input[type="number"],
select {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

button {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    background-color: purple;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
}

#result {
    margin-top: 20px;
    padding: 10px;
    border-radius: 4px;
    background-color: #f2f2f2;
    font-size: 16px;
    line-height: 1.5;
    border: 1px solid #ccc;
    color: purple;
}

.column {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

@media only screen and (max-width: 400px) {
    .container {
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: #fff;
        padding: 20px;
        box-sizing: border-box;
    }

    input[type="number"],
    select,
    button {
        padding: 20px;
        font-size: 50px;
    }
}

/* Style the Select2 dropdown */
.select2-container {
    width: 100% !important;
}

.select2-selection {
    height: 40px !important;
    font-size: 16px !important;
    border-radius: 4px !important;
    border: 1px solid #ccc !important;
}

.select2-selection__arrow {
    height: 40px !important;
}

/* Style the Select2 search box */
.select2-search__field {
    height: 40px !important;
    font-size: 16px !important;
}