* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
} 

html, body { 
  margin: 0; 
  padding: 0; 
  width: 100%; 
  height: 100%; 
  overflow: hidden; /* Prevent scrolling */
} 

.background { 
  position: fixed; 
  top: 50%; 
  left: 50%; 
  width: 500px; 
  height: 500px; 
  background: url('background.png') no-repeat center center; 
  background-size: contain; 
  transform: translate(-50%, -50%); 
  z-index: -1; 
  background-color: white; 
} 

.content { 
  display: flex; 
  flex-direction: row; 
  justify-content: space-between; 
  align-items: flex-start; 
  width: 90%; 
  max-width: 1200px; 
  margin: 50px auto; 
  overflow: hidden; /* Prevent flexbox overflow */ 
} 

.bio { 
  width: 45%; 
  background-color: rgba(255, 255, 255, 0.8); 
  padding: 20px; 
  border-radius: 8px; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
} 

.bio h2 { 
  font-size: 1.5rem; 
  margin-bottom: 15px; 
} 

.bio p { 
  font-size: 1rem; 
  color: #333; 
  line-height: 1.6; 
} 

/* Responsive Design */ 
@media (max-width: 768px) { 
  .content { 
    flex-direction: column; 
    align-items: center; 
  } 

  .bio { 
    width: 90%; 
    margin-bottom: 20px; 
  } 
}

.bio-buttons {
  margin-bottom: 10px;
}


.bio-buttons {
  display: flex;
  justify-content: center; /* Centers the buttons horizontally */
  gap: 10px; /* Adds space between the buttons */
  margin-bottom: 10px;
}

.imdb-button {
  display: inline-block;
  padding: 10px 15px;
  background-color: #f5c518;
  color: black;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  text-align: center;
}

.imdb-button:hover {
  background-color: #e0b40f;
}

