.bodyContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
#player {
  display: none;
}
.language-picker {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 1000;
  background: white;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
  padding: 2px 5px;
}
.language-picker select {
  border: none;
  background: transparent;
  font-size: 12px;
  padding: 4px;
  cursor: pointer;
  font-family: sans-serif;
}
.button {
  background-color: #ffffff;
  border: 1px solid #222222;
  border-radius: 8px;
  box-sizing: border-box;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
  color: #222222;
  cursor: pointer;
  display: inline-block;
  font-family: Circular, -apple-system, BlinkMacSystemFont, Roboto,
    "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  margin: 0;
  outline: none;
  padding: 13px 23px;
  text-align: center;
  text-decoration: none;
  touch-action: manipulation;
  transition: box-shadow 0.2s, -ms-transform 0.1s, -webkit-transform 0.1s,
    transform 0.1s;
  user-select: none;
  -webkit-user-select: none;
  width: auto;
}
.button:focus-visible {
  box-shadow: #222222 0 0 0 2px, rgba(255, 255, 255, 0.8) 0 0 0 4px;
  transition: box-shadow 0.2s;
}
.button:active {
  background-color: #f7f7f7;
  border-color: #000000;
  transform: scale(0.96);
}
.button:disabled {
  border-color: #dddddd;
  color: #dddddd;
  cursor: not-allowed;
  opacity: 1;
}
.linkedin{
  position: fixed;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
}
