body {
    background: url('../app/assets/bg.jpg') #5A0606;
    margin: 0;
    padding: 0;
    font-family: 'Bitter', serif;
}

header .navbar-toggler {
    color: rgba(255,255,255);
    border-color: none;
}

header .navbar-toggler-icon {
    background: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

a.nav-link {
    font-family: 'Staatliches', cursive;
    font-size: 1.45em;
    color: #FFEBA6 !important;
    text-decoration: none;
    text-transform: uppercase;
}

.logo {
    width: 75vw;
}

main {
    color: #fff;
    line-height: 25px;
    text-align: center;
    padding: 30px 0;
}

main img.page-title {
	max-height: 100px;
	margin: 15px auto;
}

main img {
	max-width: 90%;
	margin: 20px auto;
}

main.container p {
	margin: 10px 15px;
}

main .col-sm-6 img {

}

main .col-sm-6 + .col-sm-6 img {

}

main h6 {
    font-weight: bold;
}

main h6 + p {
    font-size: 0.9rem;
}

footer {
    text-align: center;
}

footer a, a:link, a:hover, a:focus, a:visited {
    font-family: 'Staatliches', sans-serif;
    color: #FFEBA6;
    text-transform: uppercase;
}

.social {
    text-align: center;
}

.social a {
    display: inline-block;
    margin: 10px;
    color: #FFEBA6;
    font-size: 1.5em;
}

#cookies-warning {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 20px;
    background: rgba(0,0,0, 0.8);
    font-size: 1em;
    color: #fff;
    z-index: 99;
}

#cookies-warning a {
    color: #fff !important;
}

#cookies-warning button {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    cursor: pointer;
    font-size: 0.8em;
    margin-top: 10px;
}

.contacts a {
    font-family: 'Bitter', serif;
}

.contacts span.fa {
    font-size: 1.4em;
}

.uber {
    padding: 30px;
    font-size: 1.2em;
}

main p + hr {
    width: 50px;
    background: url('../app/assets/star.png') repeat-x;
    margin: 10px auto;
}

.uber .col-sm-5 {
    display: flex;
    align-items: center;
    text-align: left;
    line-height: 1.6;
}

@media screen and (min-width: 640px) {

    header {
        background: url('../app/assets/header1.jpg') bottom center no-repeat;
        background-size: cover;
        text-align: center;
    }

    a.nav-link {
        font-family: 'Staatliches', cursive;
        font-size: 1.45em;
        color: #FFEBA6 !important;
        text-decoration: none;
        text-transform: uppercase;
        text-shadow: none;
        transition: text-shadow .3s ease-in-out;
    }

    .nav-link:hover {
        text-shadow: 0 0 5px rgba(255,255,255,.7);
    }

    @-webkit-keyframes bounce { 
        0%, 20%, 50%, 80%, 100% {-webkit-transform: rotate(0deg);} 
        40% {-webkit-transform: rotate(-30deg);} 
        60% {-webkit-transform: rotate(-15deg);} 
     } 
     
     @keyframes bounce { 
        0%, 20%, 50%, 80%, 100% {transform: rotate(0deg);} 
        40% {transform: rotate(-30deg);} 
        60% {transform: rotate(-15deg);} 
     }

     .logo {
        width: 24vw;
     }
 
     .logo:hover, aside img:hover, .col-sm-6 img:not(.page-title):hover, main .uber img:not(.page-title):hover { 
        -webkit-animation-name: bounce; 
        animation-name: bounce; 
        -webkit-animation-duration: 1s;
        animation-duration: 1s; 
        -webkit-animation-fill-mode: both; 
        animation-fill-mode: both;
     }

     .navbar-dark {
        background: url('../app/assets/nav.jpg');
     }

    main { 
        background: rgba(47,0,0, 0.66);
        border-radius: 10px;
        position: relative;
        /*min-height: 100px;*/
    }

    main::before {
        content: ' ';
        position: absolute;
        top: 100px;
        left: 0;
        bottom: 10px;
        width: 20px;
        background: url('../app/assets/dot.png') repeat-y;
    }

    main::after {
        content: ' ';
        position: absolute;
        top: 100px;
        right: 10px;
        bottom: 10px;
        width: 20px;
        background: url('../app/assets/dot.png') repeat-y;
    }

    footer {
        display: block;
        text-align: center;
        color: #FFEBA6;
        font-size: 1.5em;
    }

    #cookies-warning button {
        float: right;
        font-size: 1em;
    }

    main .uber img {
        margin: 10px;
    }
}

@media (min-width: 992px) {
    a.nav-link {
        font-size: 1.7em;
    }
}

@media (min-width: 1200px) {
    a.nav-link {
        font-size: 2em;
    }
}

@media (min-width: 1600px) {
    a.nav-link {
        font-size: 2.2em;
    }
}

@media screen and (max-width: 635px) {
    body {
        padding-top: 45px;
    }

    .logo {
        display: block;
        margin: 0 auto;
    }

    nav.navbar {
        background: rgba(47,0,0, 0.66);
    }
}