#article_emi_calculator {
    display: grid;
    justify-content: center;
}

#enter_principal label,
#enter_interest_rate label,
#enter_number_format label,
#article_emi_calculator form > label {
    margin-bottom: 5px;
    margin-top: 20px;
    display: block;
}

.tenure_years_and_months_block {
    display: none;
}

#tenure_years_input, 
#tenure_months_input {
    width: 40%;
}

#article_emi_calculator form button {
    margin-top: 40px;
}

#result {
    display: none;
    justify-items: center;
}

.result_core {
    font-size: 36px;
}

#emi {
    margin-top: 20px;
    color: var(--my-font-color);
    font-weight: var(--font-weight-bold);
    font-size: 16px;
}

#emi_notes {
    color: var(--my-font-color);
    font-size: var(--font-size-base);
    margin-top: 10px;
    margin-bottom: 10px;
}