body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f8f3e6; /* Cream background color */
}

.text1 {
    font-size: 3rem;
    color: #826f53;
    margin-top: 5vh;
    margin-bottom: 10vh;
    text-align: center;
    width: 50%; /* Adjust percentage as needed */
    margin-left: auto;
    margin-right: auto;
}

.button {
    margin-top: 50px;
    display: inline-block;
    padding: 12px 24px;
    background-color: #e6dcc8; /* Lighter cream for the button */
    color: #5d4c3a; /* Darker brown for text */
    text-decoration: none;
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(93, 76, 58, 0.2); /* Shadowing with cream-compatible color */
    margin-bottom: 5vh; /* Space between button and gallery */
}

.button:hover {
    background-color: #36a4cf; /* Blue for hover state */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(93, 76, 58, 0.3);
}

.image-container {
    border: 3px solid black;
    padding: 10px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5vh; /* Space between original image and gallery */
}

img {
    max-width: 100%;
    max-height: 30vh;
    display: block;
}

/* New gallery styles */
.gallery-container {
    width: 90%;
    max-width: 1200px;
    overflow-x: auto;
    margin-bottom: 5vh;
    padding: 20px 0;
}

.photo-gallery {
    display: flex;
    gap: 30px; /* Space between photos */
    padding: 10px;
}

.gallery-item {
    flex: 0 0 auto;
    border: 5px solid #c0ab82; /* Cream colored border */
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(93, 76, 58, 0.3);
    overflow: hidden;
    transition: transform 0.3s ease;
    background-color: white;
}

.gallery-item:hover {
    transform: scale(1.03);
    border-color: #36a4cf; /* Blue border on hover */
}

.gallery-item img {
    width: 250px;
    height: 200px;
    object-fit: cover;
}

.spotify-container {
    margin: 20px 0;
    display: flex;
    justify-content: center;
  }