body {
    margin: 0;
    font-family: "Arial", sans-serif;
    background-color: #fbff00;  
    color: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    overflow-y: scroll;
}

.header {
    display: flex;
    justify-content: space-between;
    text-transform: uppercase;
    font-family: "Anton", sans-serif;
    align-items: center;
    width: 100%;
    height: 20px;
    padding: 10px 5px;
    background-color: #b8b8b8;
    
}

.header-left h1 {
    font-size: 1.5em;
    margin: 20px;
    font-weight: normal;
}

.header-right {
    font-size: 1.5em;
    display: flex;
    margin: 20px;
    gap: 20px;
    flex-grow: 1;
    justify-content: flex-end;
}

.header-right a {
    font-size: 1em;
    text-decoration: none;
    color: #000;
}

@media (max-width: 768px) {
    .header {
        flex-direction: row;
        height: 10px;
        padding: 20px;
    }

    .header-left h1 {
        font-size: 1em;
    }

    .header-right a {
        font-size: 0.65em;
    }
    
    .additional-header h2 {
        font-size: 1em; /* Responsive adjustment */
    }
}

.work-container {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    box-sizing: border-box;
}

.work-title {
    text-align: center;
    margin-bottom: 30px;
}

.slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.slider-item {
    min-width: 100%;
    box-sizing: border-box;
    padding: 10px;
}

.slider-item img, .slider-item iframe, .slider-item video {
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: contain;
    border-radius: 5px;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #000000;
    background-color:rgba(255,255,255,0.2);;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1000;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.work-columns {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.work-details {
    flex: 1;
    text-align: left;
    font-size: 1em;
}

.work-description {
    flex: 1;
    font-size: 1em;
    text-align: justify;
}
@media (max-width: 768px) {
    .slider-item img, 
    .slider-item iframe, 
    .slider-item video {
        height: 100%; /* Set a fixed height for all content types */
        width: 100%;
        max-height: 500px;
        object-fit: contain; /* Ensures the content covers the area without distortion */
        border-radius: 0px;
    }
}


@media (max-width: 768px) {
 
    .work-columns {
        flex-direction: column;
    }

    .work-details {
        border-right: none; /* Remove border on small screens */
        padding-right: 0;
        border-bottom: 1px solid #000; /* Optional: Add a bottom border for separation on small screens */
        margin-bottom: 0px;
        line-height: 1em;
    }

    .work-description {
        padding-left: 0;
    }
}
