* {
  margin: 0;
  padding: 0;
}
.hidden {
  display: none !important;
}
body {
  display: flex;
  flex-direction: column;
  width: 100svw;
  height: 100svh;
  overflow: hidden;
}
#welcomescreen {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  max-width: 25%;
  max-height: 25%;
  width: 25%;
  height: 25%;
  background-color: blue;
  padding: 3em;
  flex-wrap: wrap;
  color: white;
}
#welcomescreen button {
  max-width: 100%;
  border-style: none;
}
#ai-player {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  flex-wrap: wrap;
}
#ai-player img {
  width: 10%;
  height: 30%;
}
#gameboard {
  display: flex;
  max-width: 100%;
  max-height: 100%;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
#pc-player {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  flex-wrap: wrap;
}
#pc-player img {
  width: 10%;
  height: 30%;
}
button {
  display: flex;
  flex-wrap: wrap;
  padding: 1em;
  margin: 1em;
  box-sizing: border-box;
  overflow-wrap: break-word;
  min-width: auto;
  max-width: auto;
  height: auto;
  background-color: blueviolet;
}

button p {
  max-width: 100%;
  max-height: 100%;
}
