html {
  font-size: 14px;
}

@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%;
}

body {
  margin-bottom: 60px;
}

footer{
    background-color: black;
}

    footer .container {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 1.5rem;
    }

.background-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.button {
    width: auto;
    position: relative;
    display: block;
    padding: 0 1.6rem;
    border: none;
    background-color: white;
    border-radius: .8rem;
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    font-family: var(--font-family);
    cursor: pointer;
    user-select: none;
    -webkit-transition: color 0.3s ease-in-out, background 0.3s ease-in-out, border 0.3s ease-in-out;
    transition: color 0.3s ease-in-out, background 0.3s ease-in-out, border 0.3s ease-in-out;
}
