/* styles.css */

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.slideshow-container {
    position: relative;
    max-width: 100%;
    width: 90%;
    height: 90vh;
    overflow: hidden;
}

.slide {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Arrows for navigation */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 40px;
    cursor: pointer;
    padding: 10px 15px;
    z-index: 10;
}

.arrow:hover {
    background-color: rgba(255, 255, 255, 0.8);
    color: black;
}

.arrow-left {
    left: 10px;
}

.arrow-right {
    right: 10px;
}

/* "X" button in the top-right corner */
.close-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: white;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 5px 10px;
    border-radius: 5px;
    z-index: 20;
}

.close-overlay:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: black;
}

/* Logo in the top-left corner */
.logo-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 20;
}

.logo-overlay img {
    max-width: 150px;
    height: auto;
    object-fit: contain;
}
 