body {
    padding: 0;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

h1 {
    font-weight: 900;
    color: #015495;
}

p {
    font-weight: 500;
    font-size: 25px;
}

a {
    text-decoration: none;
}

button {
    background-color: #015495;
    padding: 15px;
    border: 0px;
    border-radius: 11px;
    color: white;
    font-size: 21px;
    transition: .2s ease-in-out;
}

button:hover {
    cursor: pointer;
}

/* -- Comments on August Release -- 
    Creating a separate set of css in index.css for August Release
    Separate css files created as well, but this felt appropriate for index.css
    Main Reasons:
    - Text version has a nav pane on left for "buttons" (a hrefs).
*/

text-h1 {
    font-weight: 900;
    color: #015495;
    padding: 0px;
}

text-p {
    font-weight: 400;
    font-size: 25px;
}

text-button {
    background-color: white;
    padding: 12px;
    border: solid;
    border-width: 0px 0px 1px 4px;
    color: #015495;
    border-color:white white grey white;
    font-size: 20px;
}

.green {
    background-color: #029500;
}

.titleNew {
    font-size: 55px !important;
    background-color: orangered;
    width: 100%;
    color: white;
    padding: 35px 0 35px 0;
    margin :0;
}

.user-selection-button{
    margin: 0 !important;
    padding: 0.75rem 1.5rem !important;
    text-align: left !important;
    background-color: white !important;
    color: var(--primary-orange, #F15E22) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
}

.user-selection-button:hover:not(:disabled) {
    background-color: #fff5f1 !important;
    box-shadow: 0 4px 14px rgba(241, 94, 34, 0.2) !important;
}