body {
    position: relative;
    background-color: white;
    background-image: url('/images/bck_purple.png');
    background-size: 100% auto;
    background-position: top center;
    font-family: 'Roboto', sans-serif;
    color: var(--darkblue);

}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 1;
}

/* Styling for navigation bar and header */
header, nav {
    background-color: var(--purple);
    color: var(--darkblue);
}

main {
    padding: 20px;
    position: relative;
    z-index: 2;
}
h1 {
    font-size: 36px;
    text-align: center;
    font-weight: bolder;
    margin-bottom: 20px;
    margin-top: 20px;
}

.slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 300px; /* Set the height of the slider */
}

.slide {
    display: none;
    height: 300px;
    overflow: hidden;
}

.slide img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.icon {
    border: none;
}

.controls {
    text-align: center;
    margin-top: 10px;
}

button {
    font-size: larger;
    padding: 10px 20px;
    background-color: var(--purple);
    color: #fff;
    border-radius: 10px;
    width: 150px;
    height: 50px;
}

button:hover {
    background-color: var(--darkblue);
}

.sculpture-details {
    display: flex;
    justify-content: space-between; /* Align items at the beginning and end */
}

.artist-location {
    flex-grow: 1; /* Grow to take up remaining space */
}

.icons img {
    max-width: 50px; /* Set maximum width for the icons */
    max-height: 50px; /* Set maximum height for the icons */
    margin-left: 10px; /* Add space between icons */
    border-radius: 10px;
}


.sculpture-details {
    margin-top: 30px;
}

.artist-location {
    margin-bottom: 30px;
}
