.linkbar{
    grid-row: 5/5;
    grid-column: 1/11;
    display: flex;
    justify-content: space-around;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    flex-wrap: wrap;
    background-color: var(--white);
    color: var(--dark-grey);
    
}

@media (max-width: 724px) {

    .linkbar {
        flex-direction: column;
    }

    .linkbar #buy-tickets-button {
        display: none;
    }
    

    .anchor {
        padding-left: 0px;
    }

  }

.linkbar-link {
    text-decoration: none;
    color: var(--dark-grey);
}

.special{
    background-color: white;
    outline: solid var(--dark-grey);
    outline-width: 2px;
    height: 56px;
    
}

.sticky {
    position: fixed;
    top:0;
    width: 100%;
    z-index: 10;
    padding: 0.5rem;
    transition: position 0.1s;
    transition-timing-function: ease-out;
}

.linkbar.sticky{
    top: -64px;
    padding: 1rem;
}
