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

p {
  text-align: left;
  margin-left: 40px;
  margin-right: 40px;
}

#description h1 {
  margin-left: 30px;
}

#description h2 {
  margin-left: 30px;
}

#description h3 {
  margin-left: 30px;
}

#description h4 {
  margin-left: 30px;
}

.game {
  text-align: center;
  background-color: #f0f0f0;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

.hand {
  display: flex;
  gap: 10px;
  justify-content: center;
}

button {
  margin-top: 10px;
  padding: 5px 10px;
  font-size: 16px;
  cursor: pointer;
}

#fixed {
  position: fixed;
  top: 40px;
  left: 10px;
}

#language {
  position: fixed;
  top: 10px;
  left: 10px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.popup {
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

#toggle-scoreboard {
  position: fixed;
  top: 10px;
  left: 10px;
}

.scoreboard {
  display: none;
  position: fixed;
  top: 70px;
  right: 10px;
  background-color: #f0f0f0;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

.rounded-image {
  border-radius: 50%;
}
