body {
  font-family: sans-serif;
  background: #f5f5f5;
  padding: 2rem;
  text-align: center;
  
}

.header{
    width: 100%;
    height: auto;
    color: greenyellow;
    font-size: 50px;
    font-weight: bold;
    white-space: nowrap;
    text-shadow: 
    -2px -2px 1px #000,
    0px -2px 1px #000,   
    2px -2px 1px #000,
    -2px 0px 1px #000,   
    2px 0px 1px #000,    
    -2px 2px 1px #000,
    0px 3px 3px #000,
    3px 3px 0 #000;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 20px;
    margin: 0px;
    
}

.character-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.character-card {
  width: 120px;
  height: 250px;
  overflow: hidden;
  border: 1px solid #ccc;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s, background-color 0.2s;
  background-color: white;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.3);
}


.character-card:hover {
  transform: scale(1.05);
  background-color: #91ff5f;
}


.character-card.selected {
  background-color: #91ff5f;
  transform: scale(1.05);
}

.character-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.character-info {
  display: none; 
  margin-top: 2rem;
}

.character-info h2 {
  margin-bottom: 0.3rem;  
}

.character-info p {
  margin-top: 0.2rem;     
  line-height: 1.4; 
  font-weight: bold;     
}

.name{
    color: white;
    text-shadow: 
    -2px -2px 1px #000,
    0px -2px 1px #000,   
    2px -2px 1px #000,
    -2px 0px 1px #000,   
    2px 0px 1px #000,    
    -2px 2px 1px #000,
    0px 3px 3px #000,
    3px 3px 0 #000;
}

.char-image-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 1rem;
  gap: 1rem;
  margin-top: 1rem;
}

.extra-image {
  display: none; 
}

.extra-image img {
  width: 315px; 
  height: auto;
  border-radius: 8px;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.3);
}

.char-side-images {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.char-side-images img{
  width: 300px;
  height: auto;
  border-radius: 8px;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.3);
}

.char-full-image img{
  width: 155px;
  height: auto;
  
}