.no-transition {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
  }

nav {
    background-color: #333;
    overflow: hidden;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    min-height: 50px;
    padding: 0;
}

.selectable:hover,
.selectable-hidden:hover{
    background-color: #ddd;
    color: black;
}

.selectable,
.selectable-hidden{
    color: white;
}

nav ul li a {
    color: inherit;
    align-items: center;
    text-decoration: none;
    font-size: xx-large;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

nav ul li{
    min-height: 60px;
    transition: all 0.5s ease;
}

.bar {
    width: 30px;
    height: 4px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s ease;
}

#nav-bar-2 {
    transform-origin: left;
    transform: scaleX(1);
    opacity: 1;
    transition: all 0.3s ease;
}

.navactive #nav-bar-1 {
    transform: rotate(45deg) translate(5px, 5px);
}

.navactive #nav-bar-2 {
    transform: scaleX(0);
    opacity: 0;
}

.navactive #nav-bar-3 {
    transform: rotate(-45deg) translate(10px, -10px);
}

.selectable{
    grid-column: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    margin-bottom: 0;
}

.selectable-hidden{
    margin-bottom: -200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    grid-column: 2;
}

#navburger{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    justify-self: start;
    cursor: pointer;
    padding: 20px;
    background-color: #333;
    color: white;
    font-size: xx-large;
    text-decoration: none;
    border: none;
    outline: none;
    border-radius: 5px;
}

nav ul{
    display: grid;
    align-items: center;
    justify-items: center;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: repeat(auto-fit, minmax(100px, 1fr));
    list-style-type: none;
    padding: 0;
    height: 100%;
    margin-top: 0;
    margin-bottom: 0;
}

nav ul {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    grid-template-rows: 1fr;
}

.selectable,
.selectable-hidden{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    grid-column: auto;
    margin-bottom: 0;
}

@media screen and (max-width: 800px) {   
    .additional-link{
        display: none;
    }
}