@import url('https://fonts.googleapis.com/css2?family=Bruno+Ace+SC&family=Jura:wght@300..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

@font-face {
    font-family: 'Furore';
    src: url('/assets/fonts/Furore.otf') format('opentype');
}

@font-face {
    font-family: 'MixedFont';
    src: url('path-to-jura.woff2') format('woff2');
    unicode-range: U+0041-005A, U+0061-007A; /* A-Z and a-z */
    font-weight: 500;
}

@font-face {
    font-family: 'MixedFont';
    src: url('path-to-roboto.woff2') format('woff2');
    unicode-range: U+0030-0039, U+0020-002F, U+003A-0040, U+005B-0060, U+007B-007E; /* numbers and symbols */
    font-weight: 500;
}

body {
    background-color: black !important;
    color: white !important;
    font-family: 'MixedFont', sans-serif;
    font-weight: 500;
}

h1 {
    font-weight: 400;
    color: black !important;
}

a {
    color: white !important;
    text-decoration: none !important;
}

a:hover {
    color: #333 !important;
}

label {
    color: black !important;
}

.card {
    background-color: #d59314 !important;
    border: none !important;
}

.card-body {
    background-color: #d59314 !important;
    border-radius: 0.5rem !important;
}

.form-control {
    background-color: #d59314 !important;
    border: 1px solid black !important;
}

.form-control:focus {
    background-color: #d59314 !important;
    border-color: black !important;
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25) !important;
}

.btn-primary {
    background-color: #d59314 !important;
    border-color: black !important;
    color: black !important;
}

.btn-primary:hover {
    background-color: #d1b563 !important;
    border-color: black !important;
}