@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
    background-color: var(--background-color);
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
}

body {
    margin-bottom: 10px;
    background-color: var(--background-color);
    font-family: 'Roboto Condensed', sans-serif;
}

/* Do now allow the text to wrap around next line */
.text-limit {    
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* White hover effect for card anchors */

.white-anchor:hover {
    color: white; /* Change the color to white on hover */
}

.black-anchor:hover {
    text-decoration:underline;
    color: black; /* Change the color to black on hover */
}

.black-anchor {
    text-decoration: none;    
}

/* roboto-condensed-regular - latin_latin-ext */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 400;
    src: url('/fonts/roboto-condensed-v27-latin_latin-ext-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}