@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500&family=Space+Grotesk:wght@400;500;700&display=swap');
body {
    font-family: "Space Grotesk";
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #FCFAFA;
}
.calculator {
    background-color: #FFF;
    padding: 20px 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 800px;
    height: 550px;
}
.calculator input, .calculator select{
    display: block;
    width: 100%;
    margin: 10px 0;
}
#shape{
    padding: 10px 10px;
    border-radius: 10px;
    font-size: 0.9rem;
    border: 1px solid black;
    width: 80%;
}
#base,
#side,
#length,
#width,
#height,
#radius,
#density,
#productivity{
    padding: 10px 10px;
    border-radius: 10px;
    font-size: 0.9rem;
    border: 1px solid black;
    width: 35%;
}
button{
    font-family: "Space Grotesk";
    font-weight: 600;
    padding: 15px 15px;
    border-radius: 10px;
    font-size: 1rem;
    color: #FCFAFA;
    background-color: #D88345;
    border: none;
    cursor: pointer;
    width: 38%;
    display: flex;
    align-items: center;
    justify-content: center;
}
#result{
    width: 50%;
    margin-left: 45%;
    margin-top: -30%;
}