/*
    Landon Hansen
    2/27/2024
    Geometry Calculator Assignment
*/

* {
    /* font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; */
    font-family: "Inter", sans-serif;
    line-height: 2rem;

    /* --form-color: rgb(216, 76, 100); */
    /* font-family: "Anta", sans-serif; */
}

h2 {
    text-align: center;
    margin: 0;
}

.geometryCalculatorInputs {
    width: 100%;
    max-width: 300px;

    background-color: #32292F;
    color: white;

    font-weight: bold;

    border-radius: 4px;

    padding: 30px;
}

label {
    display: block;
    margin-top: 10px;
}

input, select {
    height: 2rem;
    width: 100%;
    font-size: 1rem;

    box-sizing: border-box;
}

input[type="submit"] {
    margin-top: calc(1rem + 10px);
    background-color: #575366;

    border: none;

    border-radius: 3px;
    color: white;
}

input[type="submit"]:hover {
    background-color: #3f3d49;
    cursor: pointer;
}

#output {
    text-align: center;

    margin-top: 10px;
    display: block;
}

code {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    padding: 3px;


    box-sizing: border-box;
}