* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
}

.container {
    display: flex;
    flex-wrap: wrap;
}
 
.list-container {
    display: flex;
  
}

.list-container #lgImage {
    width: 600px;
    height: 550px;
    box-shadow: 2px 3px 4px hsl(240, 100%, 50%);
}

.list-image {
    display: flex;
    
}

.list-image img {
    width: 100px;
    height: 100px;
    padding: 5px;
    margin-left: 5px;
    box-shadow: 2px 3px 4px hsl(240, 100%, 50%);
    cursor: pointer;
    object-fit: cover;
}

.room-description {
    position: relative;
    display: inline-block;
    padding: 15px;
    width: 500px;
}

.room-description h2 {
    text-align: center;
}

.room-description ul {
    position: absolute;
}

.room-description ul li {
    list-style-type: none;
    font-size: 1.5rem;
}

.view-room {
    display: none;
}