body {
    font-family: "Roboto Condensed", sans-serif;;
    margin: 0;
    background-image: url(https://groupesierra.com/wp-content/uploads/2023/05/230405-Domaine-versailles_mod-1.jpg);
background-size: cover;
background-repeat: no-repeat;
letter-spacing: 1px;
}
.panorama-viewer {
    width: 100%;
    height: 100vh;
}
/* Style for the list container */
.listContainer{
position: absolute;
left: 50%;
top: 30px;
transform: translateX(-50%);
margin-bottom: 30px;
display: flex;
flex-direction: column;
background: #314D64;
width: 400px;
height: max-content;
max-height: 80vh;
border-radius: 4px;
}
.listContainer img{
    width: 190px;
    margin: 30px auto;
}
.listContainer p{
    background-color: #fff;
    font-size: 24px;
    font-weight: 600;
    font-family: "Cormorant", serif;
    font-optical-sizing: auto;
    margin-top: 10px;
    margin-bottom: 0px;
    padding: 20px;
    color: #000;
    line-height: 19px;
    text-align: center;
    border-bottom: 1px solid rgb(255 255 255 / 16%);
    border-top: 1px solid rgb(255 255 255 / 16%);
}
.listContainer ul {
background-color: #fff;
list-style-type: disclosure-closed;
 /* Removes the default padding */
margin: 0; /* Removes the default margin */
overflow-y: scroll;
/* padding-bottom: 20px; */
}

.listContainer li {
padding: 7px 0px;
}

.listContainer a {
display: block; /* Makes the link fill the entire list item area */
text-decoration: none; /* Removes underline from links */
color: #000; /* Black text color */
padding: 10px 20px; /* Adds some padding inside the list items */
transition: all ease-in-out 0.2s;
}

.listContainer a:hover {
background-color: rgb(255 255 255 / 16%);
transform: translateX(4px);
font-weight: 600;
}
@media (max-width:720px){
    .listContainer{
        max-height: none;
        width: 98%;
        top: 4px;
    }
}