html,
body {
    min-height: 100%;
}

body {
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    color: white !important;
    background-color: black !important;
    background-image: url('../assets/images/backgrounds/dea0d17b.gif');
    font-family: 'Comic Sans MS', 'Comic Neue', sans-serif !important;
}

main {
    flex: 1;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

img {
    max-width: 100%;
    height: auto;
}

.image-container {
    text-align: center;
    margin-bottom: 1rem;
}

.logo-3d {
    display: block;
    max-width: 420px;
    margin: 2rem auto;
    transform: perspective(700px) rotateX(8deg) rotateY(-12deg);
    filter: drop-shadow(2px 2px 0 hotpink) drop-shadow(4px 4px 0 hotpink) drop-shadow(7px 7px 0 teal) drop-shadow(12px 14px 8px black);
    transition: none;
    position: relative;
    left: -0.8rem;
}

@keyframes logo-tilt {
    0% {
        transform: rotate(-12deg);
    }

    50% {
        transform: rotate(12deg);
    }

    100% {
        transform: rotate(-12deg);
    }
}

.tilt {
    animation: logo-tilt 0.5s steps(1, end) infinite;
}

.music-block {
    border: 1px solid white;
    background-image: url('../assets/images/backgrounds/ea1b06d2.gif');
}

.dark-bg {
    background-color: rgba(0, 0, 0, 0.85);
}

footer {
    z-index: 1;
    background-color: black;
    background-image: url("../assets/images/backgrounds/bg001.gif");
    height: 100%;
    padding: 1rem;
}

.footer-lockup {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.footer-lockup img {
    margin: 0.2rem;
    width: auto;
    height: 31px;
}


.ticker {
    width: 100%;
    overflow: hidden;
}

.track {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: max-content;
    animation: ticker-scroll 25s linear infinite;
}

@keyframes ticker-scroll {
    from {
        transform: translateX(100vw);
    }

    to {
        transform: translateX(-100%);
    }
}

.skip-link {
    position: absolute;
    left: -9999px;
    z-index: 1000;
    padding: 0.75rem 1rem;
    color: #000;
    background: #fff;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
}

.opening-hours {
    margin-bottom: 1rem;
}

.opening-hours h2 {
    font-size: 1.25rem;
}

.opening-hours dl {
    margin-bottom: 0.5rem;
}

.opening-hours dl div {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.opening-hours dt,
.opening-hours dd {
    margin: 0;
}

.opening-hours dt::after {
    content: ':';
}

.opening-hours p {
    margin-bottom: 0;
    font-size: 0.875rem;
}

.geo-border {
    border: 8px ridge grey !important;
}

@media (width < 1024px) {
    .heading-first {
        img {
            width: 100px;
            height: auto;
        }
    }

    .heading {
        img {
            width: 50px;
            height: auto;
        }
    }
}

@media (prefers-reduced-motion: reduce) {
    .track {
        animation: none;
        transform: none;
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
