@import url('https://fonts.googleapis.com/css2?family=Gasoek+One&display=swap');

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;
    font-family: "Gasoek One", sans-serif;
    font-style: normal;
    background-color: #1b1b1b;
    color: #e5e5e5;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/*nav bar -------*/
.navbar {
    background-color: #141415 !important;
    border-bottom: 1px solid #222;
}

.navbar-brand {
    color: #e50914;
}
.navbar-brand:hover {
    color: antiquewhite;
}

.nav-link {
    color: #a04848 ;
}

.nav-link:hover {
    color: #e50914;
}


/*Buttons -------------*/

.btn-primary {
    background-color: #e50914;
    border-color: #e50914;
}

.btn-primary:hover {
    background-color: #b00610;
    border-color: #b00610;
}


/*Links ---------*/
a { color: #a04848;}
a:hover { color: #e50914;}

/*table ----------- resource: Google search ("CSS used to apply specific styles to the header of a table in HTML, without removing the Bootstrap table markup")  */
table.table.table-dark-custom thead th {
    background-color: #141414 !important;
    color: #ffffff !important;
    border-bottom: 1px solid #333;
    font-weight: normal !important;
}

/*footer ----------*/
footer {
    background-color: #141414;
    color: #777;
}