@font-face {
    font-family: 'Bahnschrift';
    src: url(../fonts/Bahnschrift.TTF);
}

.header {
    width: 100%;
    height: auto;
    top: 0;
    position: relative;
}

.header_images {
    text-align: center;
}

.header_images img {
    height: 100%;
    width: 30%;
}

.nav_bar {
    position: relative;
    text-align: center;
    margin-bottom: 20px;
}

.nav_bar a {
    text-align: center;
    justify-content: center;
    text-decoration: none;
    padding: 17px;
    padding-left: 2.5%;
    padding-right: 2.5%;
    font-size: xx-large;
    font-family: 'Bahnschrift';
    color: #786F82;
    background-position: center;
    transition: background-image 0.3s ease;
}

.nav_bar a:hover {
    background-size: cover;
    cursor: pointer;
    background-image: url('../img/header/Case.png');
    z-index: -1;
    color: white;
}

/*Responsive*/
@media screen and (max-width: 900px) and (min-width: 650px) {
    .header_images img {
        height: 100%;
        width: 50%;
    }
}

@media screen and (max-width: 650px) {
    .header_images img {
        height: 100%;
        width: 100%;
    }
}