body{
    margin: 0;
    padding: 0;
    @import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
    font-family: 'Montserrat', sans-serif;
    background-color: black;
    color: white;
}

*{
    box-sizing:border-box;
}

@media only screen and (min-width: 1001px) {

    #header{
        position: fixed;
        top: 0;
        left: 0;
        z-index: 10;
        color: white;
        width: 100%;
        display: grid;
        grid-template: "logo empty nav" 5rem / auto 1fr auto;
        background-color: black;
        border-bottom: 1px solid #404040;
    }

    #headerspacer{
        display: block;
        position: relative;
        content: "";
        height: 5rem;
        width: 100%;
    }

    #header .logocontainer{
        grid-area: logo;
        display: grid;
        grid-template-columns: 5rem 10rem;
        align-content: center;
        padding: 0;
    }

    #header img{
        display: block;
        width: 4rem;
        height: 4rem;
        margin: 0.5rem;
    }

    #header span{
        display: block;
        padding: 1rem;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    #header nav{
        grid-area: nav;
        justify-self: end;
        align-self: end;
        display: block;
        margin: 0;
        padding: 0;
    }

    nav ul{
        list-style-type: none;
        padding: 0;
        margin: 0;
    }

    nav li{
        display: inline;
    }

    nav li.active a{
        text-decoration: underline;
    }

    nav li::after{
        content: "";
    }

    nav li:last-child::after{
        content: "";
    }

    nav a{
        display: inline-block;
        padding: 1rem;
        padding-top: 3rem;
        text-decoration: none;
        font-weight: normal !important;
    }

    a.menubutton{
        display: none;
    }

}

@media only screen and (max-width: 1000px) {

    #header{
        position: relative;
    }

    #header .logocontainer{
        display: grid;
        grid-template-columns: 3rem auto;
        align-content: center;
        padding: 0;
        width: 18rem;
    }

    #header img{
        display: block;
        width: 3rem;
        height: 3rem;
        margin: 0.5rem;
    }

    #header span{
        display: inline-block;
        width: 15rem;
        padding: 1rem;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    nav{
        display: none;
        position: fixed;
        background-color: black;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        z-index: 100;
    }

    nav ul{
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        list-style-type: none;
        font-size: 10vw;
        font-size: min(10vw, 15vh);
        margin: 0;
    }

    nav.visible{
        display: block;
    }

    a.menubutton{
        position: absolute;
        width: 5rem;
        top: 0;
        margin: auto;
        padding-top: 1.2rem;
        padding-bottom: 2.8rem;
        right: 0rem;
        z-index: 101;
    }
}

#thumbnail{
    display: block;
    width: 100%;
    height: 90vh;
    height: calc(100vh - 5rem);
    object-position: 15% 30%;
    object-fit: cover;
}

a{
    color:white;
    font-weight: bold;
    text-decoration: none;
}

a:hover{
    color: #ffcf40 !important;
    transition: color 0.3s ease;
}

.twocolumns{
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    align-items: center;
}

.twocolumns img, .twocolumns picture{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.center{
    text-align: center;
}

h1, h2, h3{
    color:#ffcf40;
}

.button{
    display: inline-block;
    margin-top: 3rem;
    padding: 1rem;
    margin: auto;
    color: white;
    border: 1px solid white;
    font-weight: normal;
}

.button:hover{
    border-color: #ffcf40;
    transition: all 0.3s ease;
}

.textpadding{
    padding-left: 8vw;
    padding-right: 8vw;
}

@media only screen and (max-width: 1000px) {
    .textpadding{
        padding: 5vw;
    }
}

.undefinedgrid{
    display: grid;

}

.fa {
    margin: 0.5rem;
    padding: 0.5rem;
    font-size: 2rem !important;
    line-height: 2rem;
    height: 3rem;
    width: 3rem;
    text-align: center;
}

.fa-facebook{
    background: #3B5998;
    color: white;
}

.fa-instagram{
    background: #125688;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%) !important;
    color: white;
}

footer{
    display: grid;
    gap: 2rem;
    justify-items: center;
    margin-top: 5rem;
    margin-bottom: 2rem;
    grid-template-columns: repeat( auto-fit, minmax(15rem, 1fr) );
}

.material-icons{
    color: white;
    font-size: 2rem !important;
}

.imagegrid{
    display: grid;
    gap: 2vw;
    grid-template-columns: 1fr 1fr 1fr;
    background-color: black;
}

.imagegrid>div{
    position: relative;
}

.imagegrid img, .imagegrid video{
    display: block;
    height: 100%;
    max-height: 40vw;
    width: 100%;
    overflow: hidden;
    object-fit: cover;
}

.imagegrid span{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    color: white;
    background-color: rgba(0, 0, 0, 0.6);
}

.content{
    margin: 3vw;
}




@media only screen and (max-width: 1000px) {
    .twocolumns{
        grid-template-columns: 1fr;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .twocolumns .first{
        grid-row: 1;
    }

    .twocolumns .second{
        grid-row: 2;
    }
    footer{
        justify-items: unset;
        width: 15rem;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .imagegrid{
        grid-template-columns: 1fr 1fr;
    }

    .content{
        margin-left: 2vw;
        margin-right: 2vw;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .imagegrid span{
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 0.3rem;
        color: white;
        background-color: rgba(0, 0, 0, 0.6);
    }

    .imagegrid img, .imagegrid video{
        max-height: 60vw;
    }
}

.collapsible{
    margin-bottom: 1rem;
}

.collapsible > div:first-child{
    position: relative;
    font-size: 2rem;
    line-height: 1;
    padding: 1rem;
    padding-left: 4rem;
    background-color: #202020;
}

.collapsible > div:first-child > span::after{
    display: block;
    position: absolute;
    right: 1em;
    top: 1rem;
    bottom: 0rem;
    content: "+";
}

.collapsible > div:first-child > img{
    margin: auto;
    position: absolute;
    left: 0.5rem;
    top: 0;
    bottom: 0;
    width: 3rem;
    height: 3rem;
}

.collapsible > div:last-child{
    padding: 1rem;
    display: none;
}

td, th{
    padding-right: 1rem;
}

td img{
    display: inline-block
}

th{
    text-align: center;
}

.right{
    text-align: end;
}

@keyframes slidy {
    13% { left: 0%; }
    17% { left: -100%; }
    29% { left: -100%; }
    33% { left: -200%; }
    46% { left: -200%; }
    50% { left: -300%; }
    63% { left: -300%; }
    67% { left: -400%; }
    79% { left: -400%; }
    83% { left: -500%; }
    96% { left: -500%; }
}

div#slider {
    overflow: hidden;
}

div#slider figure img {
    width: 16.666666666%;
    float: left;
}

div#slider figure { 
    position: relative;
    width: 600%;
    margin: 0;
    left: 0;
    text-align: left;
    font-size: 0;
    animation: 20s slidy infinite; 
}

.threecolumns{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2vw;
}