html {
    background: url(media/img/background.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

@font-face {
    font-family: huset;
    src: url(media/fonts/huset.otf);
}

body {
    margin: 0;
    padding: 0;
}

img {
    width: 100%;
    overflow: visible;
}

a {
    color: white;
    text-decoration: none;
}

h1 {
    color: white;
    font-family: huset;
    font-weight: 300;
    text-decoration: none;
    text-shadow: 0px 0px 10px orangered, 0px 0px 20px orangered, 0px 0px 30px orangered, 0px 0px 40px orangered, 0px 0px 50px orangered, 0px 0px 60px orangered, 0px 0px 70px orangered;
}

.splash {
    width: 100%;
    margin: auto;
    padding: 15px 0 10px 0;
    position: absolute;
    top: -80px;
}

#menu {
    display: none;
}

.main-nav {
    position: absolute;
}

.burger {
    display: none;
    background-color: rgba(0, 0, 0, 0.9);
    margin: 0;
    padding: 13px 5px 0px 30px;
    z-index: 1000;
    position: fixed;
    top: 20px;
    border-radius: 5px;
    left: 10px;
}

.burger li {
    display: block;
}

.burger li>a {
    text-decoration: none;
    color: white;
    padding: 0 14px;
    display: block;
    height: 30px;
    font-family: 'Play', sans-serif;
}

.burger li>a:hover {
    text-shadow: 0px 0px 10px orangered, 0px 0px 20px orangered, 0px 0px 30px orangered, 0px 0px 40px orangered, 0px 0px 50px orangered, 0px 0px 60px orangered, 0px 0px 70px orangered;
}

.burger li.close {
    display: block;
    font-size: 36px;
    color: white;
    cursor: pointer;
    top: 20px;
    left: 20px;
    position: fixed;
    z-index: 2000;
}

.burger li.close:hover {
    text-shadow: 0px 0px 10px orangered, 0px 0px 20px orangered, 0px 0px 30px orangered, 0px 0px 40px orangered, 0px 0px 50px orangered, 0px 0px 60px orangered, 0px 0px 70px orangered;
}

.mobile-btn {
    cursor: pointer;
    color: white;
    /*    padding: 10px 12px 10px 12px;*/
    background-color: rgba(0, 0, 0, 0.9);
    height: 40px;
    width: 40px;
    border-radius: 5px;
    position: fixed;
    top: 20px;
    z-index: 1001
}

.mobile-btn {
    width: 41px;
    height: 41px;
    left: 10px;
}

.mobile-btn:hover {
    text-shadow: 0px 0px 10px orangered, 0px 0px 20px orangered, 0px 0px 30px orangered, 0px 0px 40px orangered, 0px 0px 50px orangered, 0px 0px 60px orangered, 0px 0px 70px orangered;
}

#etager {
    top: 150px;
    width: 100%;
    position: absolute;
}

.punkter a {
    line-height: 60px;
}

.events,
.frivillighed,
.udlejning,
.om,
.kontakt,
.faq {
    transition: all 200ms ease-in-out;
}

.stage,
.musikcafe,
.biograf,
.bastarden,
.spisehuset,
.stardust,
.cafe,
.tal,
.ekstra {
    font-family: huset;
    font-size: 30px;
    color: white;
    transition: all 200ms ease-in-out;
}

.tal {
    font-size: 80px;
    line-height: 0px;
    text-shadow: 0px 0px 10px orangered, 0px 0px 20px orangered, 0px 0px 30px orangered, 0px 0px 40px orangered, 0px 0px 50px orangered, 0px 0px 60px orangered, 0px 0px 70px orangered;
}

.dagens_1,
.dagens_2,
.dagens_3,
.dagens_4,
.dagens_5 {
    font-family: 'Play', sans-serif;
    font-size: 14px;
    line-height: 3;
}

.sal {
    border-bottom: 2px solid white;
    width: 80%;
    height: 150px;
    padding: 5px;
    margin: auto;
    margin-top: 5px;
    display: grid;
    grid-template-areas: "tal indhold";
    grid-template-columns: 1fr 2fr;
    grid-template-rows: 120px;
}

.sal:last-child {
    border-bottom: 0px;
    height: 75px;
}

.sal:nth-child(1),
.sal:nth-child(2) {
    height: 75px;
}

.sal:nth-child(3) {
    height: 120px;
}

.tal {
    grid-area: tal;
    margin: 30px 0px 0px 30px;
    height: 20px;
}

.content {
    grid-area: indhold;
    height: 85px;
}

span.flickering-2 {
    animation: flickering-3 4s infinite;
}


/* ANIMATIONS */

@keyframes pulsating {
    0% {
        text-shadow: 0px 0px 0px;
        opacity: 0;
    }
    50% {
        text-shadow: 0px 0px 10px #33FF00, 0px 0px 20px #33FF00, 0px 0px 30px #33FF00, 0px 0px 40px #33FF00, 0px 0px 50px #33FF00, 0px 0px 60px #33FF00;
        opacity: 1;
    }
    100% {
        text-shadow: 0px 0px 0px;
        opacity: 0;
    }
}

@keyframes flickering-3 {
    0% {
        opacity: 1;
    }
    82% {
        opacity: 1;
    }
    84% {
        opacity: 0;
    }
    85% {
        opacity: 1;
    }
    87% {
        opacity: 0;
    }
    88% {
        opacity: 1;
    }
    90% {
        opacity: 0;
    }
    91% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}


/* ----- MEDIA QUERIES ----- */

@media only screen and (min-width: 376px) {
    /* Mobil landscape mode */
}

@media only screen and (min-width: 628px) {
    /* Større end iphone 6=>tablet i højformat */
    .splash {
        /*        width: 70%;*/
        position: absolute;
        top: -80px;
        margin: auto;
    }
    .logo {
        margin: auto;
        width: 50vw;
    }
    .main-nav {
        display: none;
    }
    #menu {
        display: block;
        font-family: huset;
        font-size: 40px;
        margin-left: 20px;
        top: 130px;
        position: absolute;
    }
    .menu_bar {
        margin: 0px 0px 20px 0px;
    }
    #page {
        display: grid;
        grid-template-areas: "menu etager";
    }
    #menu {
        grid-area: menu;
    }
    #etager {
        grid-area: etager;
        /*        position: inherit;*/
        top: 130px;
        width: 382.5px;
        right: 0px;
    }
    /* FLICKERING */
    span.flickering-1 {
        animation: flickering-1 6s infinite;
    }
    span.flickering-2 {
        animation: none;
    }
    span.flickering-3 {
        animation: flickering-3 5s infinite;
    }
    /* ANIMATIONS */
    @keyframes flickering-1 {
        0% {
            opacity: 1;
        }
        52% {
            opacity: 1;
        }
        55% {
            opacity: 0;
        }
        56% {
            opacity: 1;
        }
        100% {
            opacity: 1;
        }
    }
}

@media only screen and (orientation: landscape) and (min-width: 769px) {
    /* Tablet i landscape format */
}

@media only screen and (orientation: landscape) and (min-width: 1025px) {
    /* Desktop */
    .splash {
        top: -120px;
    }
    #menu {
        top: 150px;
        left: 75px;
    }
    #etager {
        top: 150px;
        right: 75px;
    }
}

@media only screen and (min-width: 1200px) {
    /* Desktop stor skærm */
}


}
