body {
    min-height: 75rem;
    padding-top: 4.5rem;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

h1 {
    color: #841E36;
}

.logo {
    height: 200px;
    width: auto;
}

/* Note:  do not remove !important, needed to override bootstap defaults */
.card-header {
    background-color: #841E36 !important;
    color: white !important;
}

.thick-border {
    border-width: 3px;
    padding: 10px 20px;
}

.btn {
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
}

.btn-primary {
    background-color: #841E36;
    border-color: #841E36;
    color: white;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;

}

.btn-primary:hover {
    background-color: white;
    border-color: #841E36;
    color: #841E36;
}

.btn-secondary {
    background-color: #646E89;
    border-color: #646E89;
    color: white;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
    background-color: white;
    border-color: #646E89;
    color: #646E89;
}

.btn-tertiary {
    background-color: #A9A9A9;
    border-color: #A9A9A9;
    color: white;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-tertiary:hover {
    background-color: white;
    border-color: #A9A9A9;
    color: #A9A9A9;
}