body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #141414;
    color: #f3f0f0;
}


/* ==== Slider Style === */

* {
    box-sizing: border-box
}


/* Slideshow container */

.slideshow-container {
    position: relative;
    display: flex;
    overflow: hidden
}

.slideshow-container img {
    display: flex;
    padding: 0%;
    height: 350px;
}


/* Hide the images by default */

.mySlides {
    flex: 1 0 100%;
}


/* 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;
}

.Slick-Navigation {
    position: absolute;
    display: flex;
    flex-direction: row;
    bottom: 12px;
    /* must be inside slide area*/
    left: 50%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 10px 5px 10px;
    margin: 0 auto;
}


/* 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: #f0eee7;
    font-size: 30px;
    font-style: bold;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 90%;
    text-align: left;
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

.slideInRight {
    animation: slideInRight 1.5s;
    animation-duration: 1.5s;
}

.slideOutLeft {
    animation: slideOutLeft 1.5s;
}

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

@keyframes fade {
    from {
        opacity: .4
    }
    to {
        opacity: 1
    }
}

header {
    background-color: #e94210;
    color: #fff;
    padding: 20px 0;
    text-align: left;
}

header h1 {
    margin: 7px;
}

.container {
    width: 100%;
    margin: 20px auto;
    padding: 20px;
    border-radius: 10px;
    background-color: #2b2929;
    text-align: left;
    color: darkgoldenrod;
}

.container-1 {
    width: 100%;
    margin: 20px auto;
    border-radius: 10px;
    text-align: left;
    background-color: #2b2929;
    margin-top: 0%;
}

.projects {
    text-align: center;
    margin-top: 30px;
}

.projects h2 {
    margin-bottom: 20px;
}

.project-item {
    display: flex;
    justify-content: space-between;
    align-items: left;
    padding: 10px;
    margin-bottom: 20px;
    background-color: #494848;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
    overflow: hidden;
    color: #fff;
}

.project-item:hover {
    transform: scale(1.02);
}

.project-item img {
    max-width: 100px;
    max-height: 200px;
    margin-right: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

.project-item:hover img {
    transform: scale(1.1);
}

.logo h1 {
    margin: 15px;
}

header {
    background-color: #e94b0d;
    color: #fff;
    padding: 2px;
}

.navbar {
    margin: auto;
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}

.nav-links {
    list-style: none;
    margin: 15px;
    padding: 0;
}

.nav-links li {
    display: inline;
    margin-right: 20px;
}

.nav-links li a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #493e3b;
}

footer {
    text-align: left;
    padding: 1px 0;
    background-color: #e94b0d;
    color: #fff;
}