/* Add here all your CSS customizations */

.space-div {
    min-height: 250px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.space-div h1 {
    font-size: 36px;
    font-weight: 500;
}

.calc-logo {
    transform: scale(0.5);
}

.calc-card {
    display: flex;
    justify-content: center;
}

.calc-form {
    border: 1px darkslategray solid;
    padding: 15px 5px;
    width: 65%;
}

.calc-form form {
    flex: 1;
}

.calc-card .result {
    flex: 0.7;
}

.calc-form select {
    width: 65%;
}

.calc-form input {
    width: 65%;
}

.form-subtitle {
    font-size: 26px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 25px;
}

.form-label-top {
    font-size: 22px;
    font-weight: 300;
}

.form-label {
    font-size: 18px;
    font-weight: 300;
    border: none;
    text-align: center;
}

.form-unit-select {
    width: 25% !important;
}

.calc-divider {
    border-bottom: 1px grey solid;
    width: 80%;
    margin: 10px auto 0px auto;
}

.result {
    text-align: center;
    margin: auto;
}

.result h1 {
    font-size: 26px;
    font-weight: 400;
    text-align: center;
}

.result-para {
    border: 1px black solid;
}

.sheet-width {
    font-size: 16px;
    color: black;
    font-weight: 500;
}

@media only screen and (max-width: 600px) {
    .space-div {
        min-height: 200px;
    }
    .calc-card {
        display: grid;
    }
    .calc-form {
        width: 100%;
    }
    .calc-form select {
        width: 100%;
    }
    .calc-form input {
        width: 100%;
    }
    .form-unit-select {
        width: 45% !important;
    }
    .result {
        margin: 25px 0px;
    }
}