body {
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    height: 800px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center; /* Vertically center content */
    margin-top: 10px;
}

/* Styling for slider section */
.slider-section {
    flex: 1; /* Take up remaining space */
    margin-right: 20px;
}

.slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%; /* Ensure slider respects parent's width */
    height: auto; /* Allow height to adjust based on image height */
}

.slider .mySlides {
    width: 100%; /* Ensure images fill their container */
    height: auto; /* Maintain aspect ratio */
    display: none; /* Hide images by default */
}

/* Styling for controls */
.controls {
    text-align: center;
    margin-top: 10px;
}

.controls button {
    background: #333;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    margin: 0 5px;
}

/* Styling for description section */
.description-section {
    flex: 1; /* Take up remaining space */
    background-color: white;
    padding: 20px;
    box-sizing: border-box;
}

.description-section p {
    font-size: 16px;
    line-height: 1.6;
}

/* Optional: Styling for Spotify iframe */
.spotify {
    margin-top: 40px;
    text-align: center;
}

.quote{
    font-style: italic;
}

.footer{
    display: flex;
    background-image: url('../images/pwbc.jpg');
    background-size: cover;
    background-position: center;
    padding: 15px;
    color: #3B2353;
    text-align: center;
    font-weight: bold;
    justify-content: center;
    bottom: 0;
    position: fixed;
    width: 100%;
  }