.languageSwitch {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid white;
  border-radius: 5px;
  font-size: 1.2em;
  color: white;
}

.dropDown {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid white;
  border-radius: 5px;
  font-size: 1.2em;
  color: white;
  min-width: 100px;
}

@font-face {
  font-family: 'Chewy';
  src: url(/e94e4ae6b454c4a3e69c.ttf);
}
.pageWrapper {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pageWrapper .content .logoContainer {
  text-align: center;
  user-select: none;
  padding-top: 10px;
}
.pageWrapper .content .gameTitle {
  text-align: center;
  font-size: 3em;
  font-family: 'Chewy', cursive;
  color: white;
  margin: 20px;
  margin-top: 0px;
  user-select: none;
}
.pageWrapper .content .subTitle {
  text-align: center;
  font-size: 2em;
  font-family: 'Chewy', cursive;
  color: white;
  margin: 20px;
  margin-top: -20px;
  user-select: none;
}
.pageWrapper .content .languageSwitchContainer {
  position: absolute;
  top: 10px;
  right: 10px;
}
.pageWrapper .content .languageSwitchContainer select {
  width: 100px;
}
.pageWrapper .footer {
  text-align: center;
  padding: 20px;
  font-family: sans-serif;
}
.pageWrapper .footer > span {
  margin: 20px;
}
.pageWrapper .footer > span > a {
  text-decoration: none;
  color: white;
}
.pageWrapper .footer > span > a:hover {
  text-decoration: underline;
  color: white;
}
.pageWrapper .footer > span > a:visited {
  color: white;
}

.createGamePage {
  text-align: center;
}

.button {
  width: 15em;
  height: 2em;
  border: 1px solid white;
  border-radius: 5px;
  font-size: 1.2em;
  color: #ffffff;
}
.primary {
  background: rgba(255, 255, 255, 0.3);
}
.secondary {
  background: rgba(255, 255, 255, 0.1);
}
.button:disabled,
.button[disabled] {
  color: rgba(255, 255, 255, 0.3);
}

.textField {
  width: 15em;
  height: 2em;
  border: 1px solid white;
  border-radius: 5px;
  font-size: 1.2em;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.3);
  text-align: center;
}
.upperCaseOnly {
  text-transform: uppercase;
}

.joinGamePage {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.smallLabel {
  font-family: sans-serif;
  font-size: 0.8em;
  color: lightgrey;
  margin: 5px;
  user-select: none;
}

.playerList {
  margin: 5px;
  border: 1px solid white;
  border-radius: 5px;
  background: rgba(173, 216, 230, 0.2);
  text-align: center;
}
.playerList .playerBubble {
  display: flex;
  font-family: 'Pontano Sans', sans-serif;
  user-select: none;
  color: rgba(255, 255, 255, 0.4);
}
.playerList .playerBubble .playerItem {
  padding: 10px;
}
.playerList .playerBubble .playerReady {
  color: #ffffff;
}
.playerList .playerBubble .playerLeft {
  color: rgba(0, 0, 0, 0.5);
}

.loadingBar {
  width: 250px;
  height: 20px;
  border: 1px solid white;
  border-radius: 5px;
}

.answerInput {
  font-family: sans-serif;
  text-align: center;
}
.answerInput-submittedAnswer {
  padding: 20px;
  color: white;
  user-select: none;
  font-size: 1.5em;
}

.questionDisplay {
  font-family: sans-serif;
  font-size: large;
  color: white;
  margin: 10px;
  border-radius: 5px;
  padding: 10px;
  width: 400px;
  text-align: center;
  border: 1px solid white;
  background: rgba(173, 216, 230, 0.2);
}

.gameRound {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.roundResultTable {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr 1fr;
  font-family: sans-serif;
  font-size: smaller;
  color: white;
  margin: 10px;
  border-radius: 5px;
  padding: 10px;
  width: 400px;
  border: 1px solid white;
  background: rgba(173, 216, 230, 0.2);
}
.roundResultTable b {
  font-weight: bold;
}
.roundResultTable span {
  margin: 3px;
}

.gameRoundResult {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gameResultTable {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  font-family: sans-serif;
  font-size: smaller;
  color: white;
  margin: 10px;
  border-radius: 5px;
  padding: 10px;
  width: 400px;
  border: 1px solid white;
  background: rgba(173, 216, 230, 0.2);
}
.gameResultTable b {
  font-weight: bold;
}
.gameResultTable span {
  margin: 3px;
}

.gameResult {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.label {
  font-family: 'Pontano Sans', sans-serif;
  font-size: 1em;
  color: white;
  user-select: none;
  margin: 5px;
}

.inviter {
  padding: 10px;
  margin: 10px;
  border: 1px dashed white;
  border-radius: 5px;
  background: rgba(173, 216, 230, 0.4);
}
.inviter .inviter-header {
  width: 18em;
  text-align: center;
  padding: 5px;
}

.gameLobby {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gameLobby-settings {
  display: flex;
  justify-content: space-around;
  margin: 20px;
  gap: 20px;
}

.gamePage {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profileDisplay {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 15em;
  border: 1px dashed white;
  border-radius: 5px;
  padding: 20px;
  font-family: 'Pontano Sans', sans-serif;
}
.profileDisplay .playerNameLabel {
  color: white;
  user-select: none;
  font-size: 1.5em;
}

.smallButton {
  width: 10em;
  height: 1.5em;
  font-size: 1em;
  border: 1px solid white;
  border-radius: 5px;
  color: #ffffff;
}
.smallButton-primary {
  background: rgba(255, 255, 255, 0.3);
}
.smallButton-secondary {
  background: rgba(255, 255, 255, 0.1);
}
.smallButton:disabled,
.smallButton[disabled] {
  color: rgba(255, 255, 255, 0.3);
}

.startPage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.storiesPage {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.storiesPage .storySelector {
  font-family: Arial, Helvetica, sans-serif;
  background: repeating-linear-gradient(45deg, gold, gold 10px, black 10px, black 20px);
  border: 3px solid black;
  margin: 15px;
  padding: 10px;
  border-radius: 10px;
  margin-top: 50px;
}
.storiesPage .storySelector h1 {
  color: white;
  background-color: black;
  text-align: center;
  padding: 5px;
}

.userdataPage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.imprintPage {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
}
.imprintPage > main {
  max-width: 500px;
}
.imprintPage-headline {
  font-size: x-large;
  margin: 20px;
}
.imprintPage-headline2 {
  font-size: larger;
  margin-top: 30px;
  margin-bottom: 20px;
}

.privacyPolicyPage {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
}
.privacyPolicyPage > main {
  max-width: 500px;
}
.privacyPolicyPage-emphasized {
  font-family: monospace;
  background-color: rgba(0, 0, 0, 0.5);
}
.privacyPolicyPage-headline {
  font-size: x-large;
  margin: 20px;
}
.privacyPolicyPage-headline2 {
  font-size: larger;
  margin-top: 30px;
  margin-bottom: 20px;
}
.privacyPolicyPage-headline3 {
  font-size: large;
  margin-top: 20px;
  margin-bottom: 10px;
}
.privacyPolicyPage-headline4 {
  font-size: medium;
  margin-top: 10px;
  margin-bottom: 10px;
}
.privacyPolicyPage-paragraph {
  display: inline-block;
}
.privacyPolicyPage-unordererlist {
  margin: 15px;
  list-style-type: circle;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-family: 'Pontano Sans';
  src: url(/1166250315d320bb05bb.ttf);
}
* {
  font-family: 'Pontano Sans', sans-serif;
}
html {
  height: 100%;
}
body {
  height: 100%;
  margin: 0;
  background: linear-gradient(45deg, #020024 0%, #4b0979 50%, #00ffe7 100%);
  background-repeat: no-repeat;
  background-attachment: fixed;
}

