body{
    background-color: beige;
}

.container{
    max-width: 400px;
    margin: 2px auto;
    padding: 20px;
    background-color: aliceblue;
    border: 2px solid bisque;
    border-radius: 5px;
    box-shadow: 2px 10px 10px rgba(0, 0, 0, 0.2);
}

h2{
    margin-top: 0;
    color: #000;
    text-align: center;
    text-decoration: underline;
}

form{
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

label{
    font-size: large;
    font-weight: 600px;
    margin-bottom: 5px;
    color: #000;
}

input[type="number"],
select{
    width: 95%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
}

input[type="number"]:focus,
select:focus {
    outline: none;
    box-shadow: 0px 0px 5px #000;
}

select{
    width: 100%;
}

input[type="submit"]{
    padding: 10px;
    margin-top: 10px;
    background-color: rgb(88, 81, 81);
    border: none;
    border-radius: 3px;
    color: aquamarine;
    cursor: pointer;
    transition: background-color 0.s ease;

}

input[type="submit"]:hover{
    background-color: rgb(70, 64, 64);

}


#result{
    font-weight: bold;
    margin-top: 20px;
    color: burlywood;
}