body {
    
    font-family: Arial, sans-serif;
    margin: 20px;
    padding: 20px;
    background-color: #258c96;
}
.container {
    color: aliceblue;
    max-width: 400px;
    margin: auto;
    font-weight: 700;
    font-size: 100%;
    background: transparent;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 10px 10px  10px 10px  rgb(0, 0, 0.1);
}
.container h2{
    text-align: center;
    font-weight: 800;
    color: black;
    font-size: 5vmin;
}
label, select, input, button {
    
    display: block;
    width: 100%;
    margin: 10px 0;
    border-radius: 10px;
}
button {
    
    font-size: 100%;
    text-align: center;
    height: 10%;
    font-weight: 700;
    background-color: #43ad32;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
}
button:hover {
    background-color: #218838;
}
#result {
    margin-top: 20px;
    padding: 10px;
    background-color:black;
    border-radius: 5px;}