body {
  margin: 0;
}

.wrapper {
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.gallery-container {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.gallery-image {
	position: relative;
}

.gallery-title {
    margin: 0;
    font-size: 24px;
}

.gallery-description {
    margin: 0;
    font-size: 14px;
}

.gallery-btns {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.gallery-btn {
    padding: 10px 20px;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    background-color: #333;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.gallery-btn:hover {
    background-color: #555;
}

.gallery-thumbnails {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.gallery-thumbnails img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.gallery-thumbnails img:hover,
.gallery-thumbnails img.selected {
  border-color: #333;
}

.hide {
  display: none;  
}