body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #141414;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.user-selection {
  text-align: center;
}

.user-selection h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
}

.profiles {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.profile {
  cursor: pointer;
  text-align: center;
  transition: transform 0.2s;
}

.profile img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 2px solid white;
  margin-bottom: 1rem;
}

.profile span {
  display: block;
  font-size: 1.2rem;
}

.profile:hover {
  transform: scale(1.1);
}
