body{
background-image:url(1.jpg) ;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}

.container{
    max-width: 400px;
    margin: 200px auto;
    padding: 20px;
    background-color: #c7c7c798;
    backdrop-filter: blur(2px);
    border: 2px solid #1e5f8a;
    border-radius: 15px;
    box-shadow: 2px 10px 10px rgba(0, 0, 0, 0.2);
}

h2{
    margin-top: 0;
    color: #1b1717;
    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;
    background: #ffffff67;
    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 #3498db;
}

select{
    width: 100%;
}

input[type="submit"]{

    padding: 10px;
    margin-top: 10px;
    background-color: #4534db;
    border: none;
    border-radius: 3px;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.s ease;
}

input[type="submit"]:hover{
    background-color: #2187b5;
}

#result{
    font-weight: bold;
    margin-top: 20px;
    color: #000000;
    line-height: 30px;
    letter-spacing: 2px;
    font-family: Arial, Helvetica, sans-serif;
    font-style: oblique;
}
