@import url("https://fonts.googleapis.com/css?family=Rubik:700&display=swap");
body {
  font-family: "Rubik", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  min-height: 100vh;
  background: #F5F5F5;
}

#login,
#loggedin {
  display: none;
}

.text-overflow {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 500px;
}

#random-button {
  text-align: center;
  padding: 1em;
  margin: 2em;
}

.button, .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.player-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 2em;
}

button {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  font-size: inherit;
  font-family: inherit;
}
button.random-button {
  font-weight: 600;
  color: #382b22;
  text-transform: uppercase;
  padding: 1.25em 2em;
  background: #f0fff3;
  border: 2px solid #afafaf;
  border-radius: 0.75em;
  transform-style: preserve-3d;
  transition: transform 150ms cubic-bezier(0, 0, 0.58, 1), background 150ms cubic-bezier(0, 0, 0.58, 1);
}
button.random-button::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #c4f9d3;
  border-radius: inherit;
  box-shadow: 0 0 0 2px #afafaf, 0 0.625em 0 0 #e2ffe7;
  transform: translate3d(0, 0.75em, -1em);
  transition: transform 150ms cubic-bezier(0, 0, 0.58, 1), box-shadow 150ms cubic-bezier(0, 0, 0.58, 1);
}
button.random-button:hover {
  background: #e9ffec;
  transform: translate(0, 0.25em);
}
button.random-button:hover::before {
  box-shadow: 0 0 0 2px #afafaf, 0 0.5em 0 0 #e2ffe7;
  transform: translate3d(0, 0.5em, -1em);
}
button.random-button:active {
  background: #e9ffec;
  transform: translate(0em, 0.75em);
}
button.random-button:active::before {
  box-shadow: 0 0 0 2px #afafaf, 0 0 #e2ffe7;
  transform: translate3d(0, 0, -1em);
}/*# sourceMappingURL=style.css.map */