* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
}

body {
    background-color: #333;
}

.container {
    width: 100% !important;
    max-width: 100% !important;
}

h1, 
h1 span {
    font-family: 'Alfa Slab One', cursive;
    font-size: 1.8em;
    line-height: 1.5em;
}

h2 {
    font-family: 'Alfa Slab One', cursive;
    font-size: 1.8em;
    line-height: 1.4em;
}

h3 {
    font-size: 1.4em;
    line-height: 1.25em;
}

h4 {
    font-size: 1.1em;
    line-height: 1.5em;
}

a, 
a:hover {
    text-decoration: none;
    color: #FFF;
    font-weight: 600;
}

.white-text {
    color: #FFF;
}

.white-text h2 {
    font-family: 'Roboto', sans-serif;
    font-size:2.5em;
}

.middle-text {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.background-logo {
    background-image: url('assets/logo.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100vh;
    position: relative;
}
.background-logo:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(51, 51, 51, 0.5);
    mix-blend-mode: multiply;
    z-index: 0;
}

.background-logo .white-text {
    z-index: 10;
}

.card {
    width: 95%;
    margin: 0 auto;
    background-color: #FFF;
}

label {
    font-weight: bold;
}
.form-control:focus {
    border-color: rgb(200, 147, 42);
    box-shadow: 0 0 0 0.2rem rgb(200 147 42 / 25%);
}
button,
input[type='submit'],
a.button-style {
    background-color: #C8932A;
    font-family: 'Alfa Slab One', cursive;
    color: #333;
    padding: 1em 2em;
    border: none;
}

.animated {
    animation: bounce 2s infinite ease ;
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5%);
    }
}

.hero {
    background-image: url('assets/hero.webp');
    background-size: cover;
    height: 50vh;
}
.hero h3 {
    margin-top: 1em;
    text-transform: uppercase;
}
h1 span {
    background-color: #000;
    padding: .35em;
    color: #FFD700;
    font-size: 1em;
}
.hero a.button-style {
    background-color: #FFD700;
}
.img-fit {
    padding: 0 !important;
}

@media screen and (min-width:481px) {
    .hero,
    .img-fit {
        height: 100vh;
    }
    .img-fit img {
        height: 100%;
    }
}

.success {
    color: #28A745;
    line-height: 1em;
}
.danger {
    color: #DC3545;
}

.black {
    background-color: #0A0A0A;
}