body {
    font-family: SJ Sans, Open Sans, Helvetica Neue, Helvetica, Arial, "sans-serif";
    color: #1d417f;
    text-align: center;
    letter-spacing: .5px;
    font-size: 1.5em;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 85vw;
    margin: 0 auto;
}

h1 {
    letter-spacing: 1px;
    margin: 0;
}

hr {
    border-bottom: 2px solid #c4d82e;
    width: 100%;
    margin-bottom: 50px;
}

#calculators {
    display: grid;
    grid-template-columns: repeat(3, minmax(100px, 1fr));
    gap: 10px;
    width: 100%;
    align-items: stretch;
}

.calculator-wrapper {
    display: flex;
    flex-direction: column;
    height: 300px;
    align-self: center;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    margin-bottom: 40px;
    padding: 10px;
    box-sizing: border-box;
}

/* !important for viz com site */
a.text {
    color: #1d417f !important;
    flex-grow: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-decoration: none !important;
    font-size: 2.5rem;
    text-transform: none;
    text-underline-offset: 3px;
    line-height: 150%;
    margin-top: 0;
    height: 100px;
}

a.text:hover {
    text-decoration: underline !important;
}

a.text:visited {
    color: inherit !important;
}

a.btn {
    align-self: center;
    color: white;
    background-color: #00437b;
    padding: 1.8rem;
    text-decoration: none;
    text-transform: none;
    text-align: center;
    font-size: 1.6rem;
    text-underline-offset: 3px;
    width: auto;
    margin-top: auto;
}