body {
    font-family: 'Arial', sans-serif;
    margin: auto;
    padding: 0;
    background-color: #a0c6dc;
    display: flex;

    justify-content: left;

}

#container {
    display: flex;
    justify-content: center;
    width: 100%;
}



.slideshow {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 1);
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}




h2 {
    margin-bottom: 10px;
    font-size: 24px;
}

h3 {
    font-size: 18px;
    margin-top: 10px;
}

.bar-chart {
    display: flex;
    flex-direction: column;
    align-items: left;
    margin-top: 20px;
    width: 600px;
    padding: 3px;
}

.bar {
    width: 100%;
    color: rgb(0, 0, 0);
    padding: 5px;
    margin-bottom: 10px;
    border-radius: 4px;
}

img {
    max-width: 60%;
    height: auto;
    margin-top: 20px;
    border-radius: 4px;
    box-shadow: 0 0 5px rgb(8, 105, 165);
}

button {
    background-color: #2c6f96;
    color: white;
    padding: 10px 3px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 100px;
}

button:hover {
    background-color: #ca8ce9;
}

/* Responsive Styles */
@media (max-width: 1080px) {
    .slideshow {
        max-width: 90%;
    }
}