* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    background-color: #000000;
    color: rgb(226, 226, 226);
    font-family: 'Poppins', sans-serif;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
}

nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 8vh;
    font-family: 'Poppins', sans-serif;
    /* background-color: #5d4954; */
    background-color: #000000;
    z-index: 9999;
}

.logo {
    color: rgb(226, 226, 226);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 20px;
}

.nav-links {
    display: flex;
    justify-content: space-around;
    width: 65%;
}

.nav-links a {
    color: rgb(226, 226, 226);
    text-decoration: none;
    letter-spacing: 3px;
    font-weight: bold;
    font-size: 14px;

}

.nav-links li {
    list-style: none;
}

.burger {
    display: none;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: rgb(226, 226, 226);
    margin: 5px;
    transition: all 0.3s ease;
}

@media screen and (max-width: 1024px) {
    body {
        overflow-x: hidden;
    }

    .nav-links a {
        color: rgb(226, 226, 226);
    }

    .nav-links {
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 8vh;
        /* background-color: #5d4954; */
        background-color: #000000;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        z-index: 9999;

    }

    .nav {
        z-index: 9999;
    }
   

    .dropdown-content {
        z-index: 9999;
    }

    .nav-links li {
        opacity: 0;
    }

    .burger {
        display: block;
        cursor: pointer;
    }

    .logo {
        font-size: 35px;
    }
}

@media screen and (max-width:761px) {
    body {
        overflow-x: hidden;
    }

    .nav-links a {
        color: rgb(226, 226, 226);
    }

    .nav-links {
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 8vh;
        /* background-color: #5d4954; */
        background-color: #000000;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;

    }

    .nav-links li {
        opacity: 0;
    }

    .burger {
        display: block;
        cursor: pointer;
    }

    .logo {
        font-size: 12px;
    }
}

.nav-active {
    transform: translateX(0%);
}

@keyframes navLinkFade {
    from {
        opacitiy: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0px);
    }

}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

.about-main {
    display: flex;
    flex-direction: row;
    margin: 40px;
    background-color: #000000;
    color: rgb(226, 226, 226);
    letter-spacing: 1px;
    margin-top: 100px;
}

.about-left {
    width: 25%;
}

.about-right {
    width: 25%;
}

.about-middle {

    width: 50%;
    flex-grow: 0;
}

@media screen and (max-width: 1024px) {
    .about-middle {
        width: 90%;
    }
}

@media screen and (max-width:768px) {
    .about-middle {
        width: 90%;
    }
}



span {
    display: block;
    float: left;
    width: 16px;
    height: 16px;
    margin-left: 16px;
    filter: blur(4px);
    background: red;
    border-radius: 50%;
}

@keyframes dot {
    50% {
        transform: translateX(96px);
    }
}

@keyframes dots {
    50% {
        transform: translateX(-31px);
    }
}

.preload-finish {
    opacity: 0;
    pointer-events: none;
}

.dropdown {
    float: right;
    overflow: hidden;
}

.dropdown .dropbtn {
    font-size: 14px;
    border: none;
    outline: none;
    color: rgb(226, 226, 226);
    margin: 0;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 3px;
    font-weight: bold;
}

.dropdown:hover .dropbtn {
    background-color: #000000;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: grey;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    float: none;
    color: #f2f2f2;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: rgb(226, 226, 226);
    color: #000;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown2 {
    float: right;
    overflow: hidden;
}

.dropdown2 .dropbtn2 {
    font-size: 14px;
    border: none;
    outline: none;
    color: rgb(226, 226, 226);
    margin: 0;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 3px;
    font-weight: bold;
}

.dropdown2:hover .dropbtn2 {
    background-color: #000000;
}

.dropdown-content2 {
    display: none;
    position: absolute;
    background-color: grey;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content2 a {
    float: none;
    color: #f2f2f2;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content2 a:hover {
    background-color: rgb(226, 226, 226);
    color: #000;
}

.dropdown2:hover .dropdown-content2 {
    display: block;
}

#story-pic {
    width: 90%;
    margin-top: 10px;
}

.nyito-main {
    display: flex;
    flex-direction: row;
    margin: 40px;
    background-color: #000000;
    color: rgb(226, 226, 226);
    letter-spacing: 1px;
    margin-top: 100px;
}

.nyito-left {
    width: 15%;
}

.nyito-right {
    width: 15%;
}

.nyito-middle {

    width: 70%;
    flex-grow: 0;
}

/*slideshow responsive */
@media screen and (max-width:768px) {
    .slideshow-container {
        width: 100%;
        
    }

    .nyito-left {
        width: 0%;
    }

    .nyito-right {
        width: 0%;
    }


    .nyito-middle {
        flex-grow: 1;
        margin-top: 0;
        padding-top: 0;
        text-align: center;
    }
}


/* Slideshow container */
.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
    margin-top: 30px;

}

.img-src {
    max-height: 600px;
}

/* Hide the images by default */
.mySlides {
    display: none;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text */
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active,
.dot:hover {
    background-color: #717171;
}

/* Fading animation */
.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

/* Termék oldalak responzitivitása*/
@media screen and (max-width:800px) {

    

    .merch {
        flex-direction: column;
        background-color: #000000;
        color: rgb(226, 226, 226);
        letter-spacing: 1px;
        margin-top: 100px;
        text-align: center;
        justify-content: center;
        align-items: center;
        width: 100%;
       
    }

    .merch-left {

        width: 100%;
        flex-grow: 1;
    }
}


.merch {
    display: flex;
    flex-direction: row;
    margin: 40px;
    background-color: #000000;
    color: rgb(226, 226, 226);
    letter-spacing: 1px;
    margin-top: 100px;
}

.merch-left {
    width: 40%;
    margin-left: 30px;
}

.merch-right {
    width: 45%;
    margin-left: 80px;
}

.merch-pics {
    width: 100%;
}



#spyder {
    height: 85%;
    width: 85%;
    margin-left: 50px;
}

#raven {
    height: 80%;
    width: 80%;
    margin-left: 75px;
}

#hans {
    width: 80%;
    height: 80%;
    margin-left: 50px;
}

#tarkovi {
    margin-top: 70px;
    width: 85%;
    height: 85%;
}

.interview {
    
    background-color: #000000;
    color: rgb(226, 226, 226);
    letter-spacing: 1px;
    margin-top: 100px;
}

#morrison {
    transform: rotate(270deg);
    margin-top: 100px;
}

#roman {
    transform: rotate(90deg);
    margin-top: 100px;
    margin-bottom: 100px;
}

#velenczei {
    height: 95%;
    width: 95%;
}

.tarkovi {
    display: flex;
    background-color: #000000;
    color: rgb(226, 226, 226);
    letter-spacing: 1px;
    margin-top: 100px;
}

.tarkovi-left {
    margin-left: 50px;
    width: 40%;
    margin-top: 25px;
}

.tarkovi-right {
    width: 45%;
}

.tarkovi-pics {
    width: 80%;
    
}


@media screen and (max-width:800px) {

    .tarkovi {

        flex-direction: column;
        background-color: #000000;
        color: rgb(226, 226, 226);
        letter-spacing: 1px;
        margin-top: 100px;
        text-align: center;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .tarkovi-left {
      margin-right: 80px;
       margin-bottom: 50px;
       flex-grow: 1;
        
    }

    .tarkovi-pics {
        width: 200px;
        
        flex-grow: 1;
    }

    .tarkovi-right {
        width: 100%;
    }

    .interview { 
        
        width: 80%;
        text-align: center;
        margin-left: 35px;
    }


}


.velenczei {
    display: flex;
    background-color: #000000;
    color: rgb(226, 226, 226);
    letter-spacing: 1px;
    margin-top: 100px;
}

.velenczei-left {
    margin-left: 50px;
    width: 40%;
    margin-top: 25px;
}

.velenczei-right {
    width: 45%;
}

.velenczei-pics {
    width: 80%;
    
}


@media screen and (max-width:800px) {

    .velenczei {

        flex-direction: column;
        background-color: #000000;
        color: rgb(226, 226, 226);
        letter-spacing: 1px;
        margin-top: 100px;
        text-align: center;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .velenczei-left {
        margin-right: 40px;
        margin-bottom: 50px;
       flex-grow: 1;
        
    }

    .velenczei-pics {
        width: 200px;
        
        flex-grow: 1;
    }

    .velenczei-right {
        width: 80%;
    }

    .interview { 
        
        width: 80%;
        text-align: center;
        margin-left: 35px;
    }


}

.logo {
    text-align: center;
}

#schagerl {
   
    height: 50%;
    width: 50%;
}


.story {
    display: flex;
    background-color: #000000;
    color: rgb(226, 226, 226);
    letter-spacing: 1px;
    margin-top: 100px;
}

.story-left {
    margin-left: 50px;
    width: 30%;
    margin-top: 25px;
}

.story-right {
    width: 55%;
}

@media screen and (max-width:800px) {

    .story {

        flex-direction: column;
        background-color: #000000;
        color: rgb(226, 226, 226);
        letter-spacing: 1px;
        margin-top: 100px;
        text-align: center;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .story-left {
    margin-right: 120px;
       margin-bottom: 50px;
       flex-grow: 1;
        
    }

    #story-pic {
        width: 200px;
        text-align: center;
        
        flex-grow: 1;
    }

    .story-right {
        width: 100%;
    }

   


}
