body {
    /* font-family: Arial, sans-serif; */
    font-family: 'Titillium Web', sans-serif;
    margin: 0;
    padding: 0;
}

.watermark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 5px 0;
    background: rgba(255, 255, 255, 0.2);
    color: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    pointer-events: none;
    text-align: center;
}

/* ----- TOP MENU ------ */
.menu-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: transparent;
    border-bottom: 1px solid black;
    display: flex;
    justify-content: center; 
    align-items: center;
    padding: 0 20px;
    z-index: 1;
    background: #fff;
}

.menu-text {
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 20px;
}

.menu-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 20px;
}

.menu-text a {
    color: black;
    text-decoration: none;
}

.menu-item {
    width: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center; 
}

/* ----- ARTIST PANEL ----- */

.artist-panel img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.artist-image {
    width: 60%;
    height: auto;
    object-fit: contain;
}

/* .artist-panel {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 1000px;
    background-color: white;
    color: black;
    padding: 20px;
    box-sizing: border-box;
    overflow: auto;
    border: 1px solid black;
    z-index: 3;
} */

.artist-panel {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 1000px;
    background-color: white;
    color: black;
    padding: 20px;
    box-sizing: border-box;
    overflow: auto;
    border: 1px solid black;
    z-index: 3;
}

@media screen and (max-width: 768px) {
    .artist-panel {
        width: 95%;
    }
    .artist-image {
        width: 100%;
    }
    .artist-panel-content {
        flex-direction: column;
    }
}

.artist-panel-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.artist-description {
    margin-left: 20px;
}

.close-panel {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 30px;
    cursor: pointer;
    color: black;
    z-index: 10;
}


/* ----- PAGE CONTENT ------ */
.centered-text {
    text-align: justify;
    border-left: 1px solid black;
    border-right: 1px solid black;
    max-width: 800px;
    margin: 75px auto 0 auto;
	padding: 0 50px; /* This adds 5px padding on the left and right of the text */
    position: relative;
}

.image-top-left {
    position: relative;
    float: left;
    margin-right: 30px;
    margin-bottom: 20px;
    width: 200px;
    height: auto;
}

.image-top-left img {
    width: 100%;   /* Ensures the image takes up 100% of the container width */
    height: auto;  /* Ensures the image maintains its aspect ratio */
}

.image-bottom-right {
    position: relative;
    float: right;
    margin-left: 30px;
    margin-top: 20px;
    width: 200px;
    height: auto;
}

.image-bottom-right img {
    width: 100%;   /* Ensures the image takes up 100% of the container width */
    height: auto;  /* Ensures the image maintains its aspect ratio */
}

/* --- BACKGOUND ON ACTIVE PICTURE PANEL --- */

#overlay {
    display: none;
    position: fixed; /* Sit on top of the page content */
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.5); /* White background with opacity */
    z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
}