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%;
    background-image: url('/images/RedBackgroundImage.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    color: white;
}

/*@media (max-width: 576px) {
    html {
        background-position: -300px 0px;
    }
}*/

body {
    margin-bottom: 60px;
    background-color: transparent;
    /*padding-top: 56px;*/
    color: white;
    font-family: 'Charm', sans-serif;
    font-size: 1.25rem;
}

.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 {
    position: fixed;
}

.FixedHorizontalCenter {
    position: fixed;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.Content {
    max-width: 60%;
    margin: 0 auto;
}

.FirstWord {
    font-weight: bold;
    color: orangered;
    font-size: x-large;
}

.HighlightedWord {
    color: orangered;
}

.Header {
    /*color: orangered;*/
    border-bottom: 2px solid #8c8273;
    /*max-width: 60%;*/
    margin: 30px auto;
    text-align: center;
}

section {
    padding-bottom: 15px;
}

.slide-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.5s ease;
}

.slide-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.no-blue-link {
    color: inherit; /* Inherits the color from the parent element */
    text-decoration: none; /* Removes the default underline */
}

.link-hover-grey:hover {
    color: grey; /* Changes to light grey on hover */
    text-decoration: none; /* Optional: removes underline on hover */
}

h1, h2, h3, h4, h5, h6, p, div, span, label, button, input {
    font-family: 'Charm', cursive !important;
}

@font-face {
    font-family: 'Charm';
    src: url('/fonts/Charm-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Charm';
    src: url('/fonts/Charm-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}