html, body {
	background-color: #FFF;
	margin: 0 auto;
    height: 100%;
    font-family: Helvetica, sans-serif;
}

/* Header styles */
#home {
    padding-left: .16em;
    color: #000;
    text-decoration: none;
}

#home:hover {
    color: #000;
    text-decoration: none;
}

.header {
    position: fixed;
    z-index: 1;
    width: 100%;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.3); /* RGBA color with transparency */
    backdrop-filter: blur(7px); /* Apply a blur effect */
}

.header a {
    color: #000;
    font-size: 5.62vw;
    font-weight: 400;
    text-align: left;
    text-decoration: none;
    margin-top: .04em;
    padding: 0 .16em;
    float: left;
      user-select: none;
      -webkit-user-select: none;
}

.header-right {
    position: absolute;
    right: .24em;
}

.header-right a {
    color: #000;
    text-decoration: none; /* Remove the default underline */
    position: relative; /* Position relative for pseudo-element */
}

.header-right a::before {
    content: "";
    position: absolute;
    bottom: .13em;
    left: .16em;
    right: .16em;
    height: .08em; /* Height of the line-through */
    background-color: #000; /* Color of the line-through */
    transform: translateY(100%); /* Initially hidden below the text */
    transition: transform 0.3s ease; /* Transition the transform property */
    pointer-events: none; /* Allow clicking through the pseudo-element */
}

.header-right #work:hover::before,
.header-right #about:hover::before,
.header-right #contact:hover::before {
    transform: translateY(-520%); /* Move the line up to the middle of the text */
}

/* Fix the Header in FireFox */
@-moz-document url-prefix() {
    .header a {
        margin-top: .16em;
    }
}

/* Slide Information */

.slide-title-container {
    position: fixed;
    pointer-events: none;
}

/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    width: auto;
    padding: 0 8px;
    color: #000;
    font-weight: 400;
    font-size: 5.62vw;
    transition: 0.3s ease;
    bottom: .1vw;
    user-select: none;
    -webkit-user-select: none;
}

.slide-content {
    position: relative;
    overflow: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mySlides img {
    flex: 1; /* Allow the image to expand and fill the available space */
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile {
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

#slide_1 {
    background-color: #ECECEC; /* GREY */
}
#slide_2 {
    background-color: #FFF; /* WHITE */
}
#slide_3 {
    background-color: #DE0529; /* PORSCHE RED */
}
#slide_4 {
    background-color: #000; /*  BLACK */
}
#slide_5 {
    background-color: #DE0529; /* PORSCHE RED */
}
#slide_6 {
    background-color: #FFF466; /* YELLOW */
}
#slide_7 {
    background-color: #FFF; /* WHITE */
}
#slide_8 {
    background-color: #FFF; /* WHITE */
}
#slide_9 {
    background-color: #000; /*  BLACK */
}
#slide_10 {
    background-color: #000; /*  BLACK */
}
#slide_11 {
    background-color: #FFF; /* WHITE */
}
#slide_12 {
    background-color: #D8232A; /* RED */
}

/* Position the "next button" to the right */
.next {
    right: 0;
}

/* Menu Bar Icon */
.header .icon {
    display: none;
}
.menu-bar {
    display: inline-block;
    cursor: pointer;
    margin-right: -.03em;
}
.bar1, .bar3 {
    line-height: .2;
    transition: 0.3s;
}
.change .bar1 {
    transform: rotate(-45deg) translate(-.14em, .04em);
}
.change .bar3 {
    transform: rotate(45deg) translate(-.02em, -.08em);
}

@-moz-document url-prefix() {
    .change .bar1 {
    transform: rotate(-45deg) translate(-.08em, .08em);
    }
    .change .bar3 {
    transform: rotate(45deg) translate(-.06em, -.06em);
    }
}

/* Responsive header - Show Menu Icon */
@media screen and (max-width: 768px) {
    .header a, .number_text, .prev, .next {
        font-size: 10vw;
    }
    .header-right {
        position: relative;
        right: 0;
    }
    .header-right a {
        display: none; 
    }
    .header a.icon {
        float: right;
        display: inline-block;
    }
    /* Resize the Slideshow */
/*    .mySlides {
      background-position: center;
      background-size: contain;
    }*/
    
}
/* Dropdown Menu */
@media screen and (max-width: 768px) {
    .header.responsive {
        position: fixed;
    }
    .header.responsive a.icon {
        position: absolute;
        right: 0;
        top: 0;
    }
    .header.responsive a {
        float: none;
        display: block;
        text-align: left;
    }
}

@media screen and (max-width: 480px) {
    #home {
    padding-left: .16em;
    color: #FFF;
    text-decoration: none;
    }
    #home:hover {
    color: #FFF;
    text-decoration: none;
    }
    .header {
        background-color: #000;
    }
    .header a {
        color: #FFF;
        font-size: 12vw;
    }
    .header-right a::before {
        background-color: #FFF;
    }
    .prev, .next {
        display: none;
    }
    /*    .mySlides {
      background-position: center;
      background-size: contain;
    }*/

    .slide-content {
        display: none;
    }
    .mobile {
        display: flex; /* Show mobile images for mobile devices */
        overflow: hidden;
        width: 100%;
        height: 100vh;
        justify-content: space-between;
    }

    .mobile img {
        flex: 1; /* Allow each image to expand and fill the available space */
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
