@font-face {
    font-family: ButcherFactory;
    src: url("./TheButcherFactory-LLOW.ttf");
}

@font-face {
    font-family: BlackNorth;
    src: url("./Blacknorthdemo-mLE25.otf");
}

@font-face {
    font-family: NightPumpkin;
    src: url("./NightPumpkind-1GpGv.ttf");
}

@font-face {
    font-family: FlowerThanksgiving;
    src: url("./FlowerThanksgiving-Zpnaz.ttf");
}

@font-face {
    font-family: ButcherTheBaker;
    src: url("./ButcherTheBaker-R8RA.ttf");
}



body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: whitesmoke;
}

@media (max-width: 749px) {
    .title {
        text-align: center;
        padding: 50px;
        background: #111;
    }
    .title h2 {
        font-size: 25px;
        text-wrap: false;

    }
    .title h4 {
        font-size: 25px;
    }
}
@media (min-width: 750px) {
    .title {
        text-align: center;
        padding: 50px;
        background: #111;
    }
    .title h2 {
        font-size: 120px;
    }

    .title h4 {
        font-size: 40px;
    }
    .opentimes-day {
        padding-left: 400px;
    }
    .location-text {
        text-align: center;
    }
    .location-address {
        text-align: center;
    }
    .slideshow-title {
        text-align: center;
    }
    .slide {
        border-radius: 50px;
    }
}

.parallax {
    height: 400px;
    background-image: url("/Images/background.jpg");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.content {
    padding: 50px;
    font-size: 1.2em;
    background: #111;
}

.navbar {
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.button {
    text-align: center;
    font-family: NightPumpkin;
    border-style: solid;
    border-color: #222;
    border-radius: 20px;
    text-wrap: false;
}

.opentimes h3 span {
    color: #777;
    font-family: BlackNorth;
    font-size: 30px;
}

.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.navbar ul li {
    margin-left: 20px;
}

.navbar ul li a {
    color: whitesmoke;
    text-decoration: none;
    font-size: 16px;
}

.header-title h2 {
    padding-top: 10px;
    margin: 0;
    font-family: ButcherFactory;
    font-size: 150px;
    color: whitesmoke;
}

.header-title h4 {
    margin: 0;
    font-family: BlackNorth;
    color: #888;
}

.slideshow {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.slides {
    display: none;
    width: 100%;
}

.content h2 {
    font-family: NightPumpkin;
    font-size: 80px;
}

.slideshow-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
}

.slide-track {
    display: flex;
    animation: scroll 10s linear infinite;
}

.slide {
    width: 400px;
    height: auto;
    margin-right: 20px;
    flex-shrink: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}