body {
  font-family: Arial, sans-serif;
  background-image: url(harry\ potter.jpg);
  background-size: cover;
  color: white;
  text-align: center;
}
.box {
  background: orange;
  display: inline-block;
  padding: 20px;
  border-radius: 10px;
  margin-top: 30px;
}
img {
  max-width: 200px;
  border-radius: 10px;
  margin-top: 10px;
}
.info {
  margin-top: 15px;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 10px;
  display: inline-block;
  text-align: left;
}


.character-list-box {
    position: fixed;
    top: 20px;
    right: 20px;
    background: orange;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    width: 200px;
    max-height: 400px;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .character-list-box.collapsed {
    max-height: 40px; 
    overflow: hidden;
  }
  
  .character-list {
    margin-top: 10px;
    max-height: 350px;
    overflow-y: auto;
    display: none;
  }
  
  .character-list div {
    padding: 5px;
    cursor: pointer;
    border-bottom: 1px solid #fff;
  }
  
  .character-list div:hover {
    background: #ffcc66;
  }
  