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

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
    padding: 20px;
}

.gallery-item {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 400px;
}

.mySlides {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s;
}

.mySlides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mySlides.show {
    opacity: 1;
}

.gallery-item h2 {
    font-size: 1.5em;
    margin: 10px 0;
}

.gallery-item p {
    color: #555;
    font-size: 1em;
    margin-bottom: 10px;
}

.pagination {
    text-align: center;
    margin: 20px 0;
}

.pagination a {
    margin: 0 5px;
    text-decoration: none;
    color: black;
}

.pagination a.prev,
.pagination a.next {
    color: #007bff;
}

.pagination a.current {
    color: red;
    font-weight: bold;
}
.pagination a.disabled {
    color: grey;
    pointer-events: none;
}
.play-link {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1em;
}

.play-link:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.smhok {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.2);
    color: green;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1em;
}

header {
    //background-color: #007bff;
    background-color: rgba(0, 30, 60, 0.3);
    color: white;
    text-align: center;
    padding: 20px 0;
}

header h1 {
    font-size: 2em;
    margin: 0;
    text-align:center;
}
