:root{
    --primarycolor: white;
}
body{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    background-color:rgb(25, 24, 37);
    color: var(--primarycolor);
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}


.input-container{
    margin: 10% auto;
    max-width: 450px;
    width: 95%;
    
}
h1{
    font-weight: bold;
    text-shadow: 1px 1px 5px white;
}

.input-value{
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 35px;
    padding-bottom: 40px;
    border: 3px solid whitesmoke;
    box-shadow: 0px 2px 14px pink;
}

.input-value label, .input-value input{
    margin-bottom: 10px;
    font-size: 20px;
}
.input-value input{
    height: 30px;
    max-width: 350px;
    
    
}
select{
    width: max-content;
    font-size: 20px;
    margin-bottom: 20px;
}
.button{
    display: grid;
    place-items: center;
    margin-bottom: 20px;
}

#calculate-btn{
    width: max-content;
    font-size: 20px;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

#result{
    display: none;
}
#error{
    display: none;
}
