*{
    background: black;
}

a {
    font-family: "Tektur", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    font-size: 1.2em;
    padding: 1%;
    text-decoration: none;
    color: white;
  }

.logo{
    width:50px;
    height: auto;
    border-radius: 50%;
}

body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.background{
    width: 50%;
    height: auto;  
    justify-content: center;
    object-fit: cover;
    filter: grayscale(1);
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
    }

.background_image {
    display: flex;
    justify-content: center;
    width: 100vw;
    height: auto;
    background-color: rgb(54, 52, 52);
    border-top: solid white;
    border-bottom: solid white;
}

nav{
    display: flex;
    max-width: 100%;
    margin: 5px;
    padding: 5px;
    justify-content: space-between;
    align-items: center;
}

.nav_links{
    display: flex;
    align-items: end;
    white-space: nowrap;
    margin-right:30px;
}

a:hover {
    color: gray; 
}

.nav_end {
    margin: 15px;
    flex-wrap: nowrap;
}

p{
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    width: 30vw; 
    margin: 0 auto;
}

main{
    margin: 50px;
}

.gallery{
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 10px;
   margin-top: 50px;
   align-items: center;
}

.gallery_pic{
    width: 100%;
    height: auto;
    object-fit: cover;
    border: solid white;
    filter: grayscale(1);
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}

.gallery_vid{
    width: 100%;
    height: auto;
    border: solid white;
    filter: grayscale(1); 
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}

.big_video{
    max-width: 100%;
    border: solid white;
    filter: grayscale(1);
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}

.gallery figure {
    display: flex;
    flex-direction: column; 
    align-items: center; 
    text-align: center; 
    margin: 10px; 
    width: 45%;
}

figcaption{
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    margin:5px;
    font-size: .7em;
}

.hamburger-menu {
    font-size: 24px;
    color: white;
    cursor: pointer;
    display: none; 
}

@media (max-width: 850px) {  
    

    .gallery{
        flex-direction: column;
        
    }

    p{
        width: 60vw;
    }

    .nav_links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 10px;
        background: black;
        padding: 10px;
        border-radius: 5px;
        margin-right: 0;
        z-index: 1000;
        border:solid white;
    }

    .hamburger {
        width: 40px;
        cursor: pointer;
    }

    .hamburger-menu {
        display: block; 
        margin-right: 0px ;
    }
   
    .nav_links.show {
        display: flex !important;
    }
}