html, select, option {
    font-size: 14px;
}

@media (min-width: 768px) {
    html, select, option {
        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;
  height: 100%;
}

body {
  background-color: black;
  color: lightslategrey;
  margin-bottom: 60px;
  height: 100%;
  width: 100%;
}

form {
    height: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: SegoeUIBold;
    letter-spacing: -0.015em;
}

.fine-print {
    color: rgb(102, 128, 153);
    font-size: 10.5pt;
}

.warning {
    color: rgb(255, 102, 0);
    font-size: 10.5pt;
}

header {
    display: none;
    color: white;
    z-index: 99;
}

nav {
    background-color: #777;
    background-image: url(/images/backgrounds/gray_leather_background.png);
    background-repeat: repeat-x;
    background-position-y: -40px;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
}

#page-container {
    display: none;
    height: 100%;
    padding-bottom: 80px;
    padding-top: 80px;
}

footer {
    display: none;
}

p {
    line-height: 1.25em;
}

.page-description {
    position: absolute;
    height: 10px;
    left: -10000px;
    overflow: hidden;
    top: -1000px;
    width: 10px;
    z-index: -1;
}

.flex-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    text-align: center;
}

.no-border {
    border: none;
}

    .no-border:focus {
        border: none;
    }

.float-left {
    float: left;
}

.float-right {
    float: right;
}