﻿h1 {
    color: rgb(2, 58, 112);
    overflow-wrap: anywhere;
    margin-bottom: 0.35em;
    font-size: 4.75rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    line-height: 1.25;
}

p {
    color: rgb(2, 58, 112);
    overflow-wrap: anywhere;
    font-size: 1.25rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 0.35em;
}

.primary-button {
    color: #fff;
    box-shadow: none;
    background-color: #0C72CE;
}

    .primary-button:hover {
        background-color: rgb(2, 58, 112); /* Change background color on hover */
    }

.muibutton {
    padding: 11px 16px;
    min-width: 150px;
    border-radius: 100px;
    font-size: 1rem;
    box-sizing: border-box;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, border 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    line-height: 1.75;
    text-transform: none;
    border: 0;
    cursor: pointer;
    margin: 0;
    display: inline-flex;
    outline: 0;
    position: relative;
    align-items: center;
    user-select: none;
    vertical-align: middle;
    -moz-appearance: none;
    justify-content: center;
    text-decoration: none;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
}

.btn-mhcblue, .btn-mhcblue:not(:disabled):not(:disabled):active {
    color: #fff;
    border-color: #0C72CE;
    background-color: #0C72CE;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

    .btn-mhcblue:hover, .btn-mhcblue:active {
        color: #fff;
        background-color: rgb(2, 58, 112);
        border-color: rgb(2, 58, 112);
    }

    .btn-mhcblue:disabled {
        color: #fff;
        background-color: red;
        border-color: red;
    }
