.body-text {
  font-family: 'Komikax', sans-serif;
  color: #ffffff;
  text-shadow:
    2px 1px 10px #3d52ff,
    1px 1px 10px #3d52ff;
  text-align: center;
}

.text-input {
  border-radius: 5rem;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.41);
  text-align: center;
  padding: 0.5rem 0;
  margin-bottom: 1rem;
  color: #ffffff;
}

span {
  font-family: 'Komikax', sans-serif;
}

.text-white {
  font-family: 'Komikax', sans-serif;
  color: #ffffff;
}

.text-red {
  font-family: 'Komikax', sans-serif;
  color: red;
}

.text-grey {
  font-family: 'Komikax', sans-serif;
  color: grey;
}

.sub-body-text {
  font-size: 0.8rem;
}

.btn:hover {
  cursor: pointer;
}

.clickable:hover {
  cursor: pointer;
}

.game-logo {
  width: 35%;
  z-index: 1;
}

.pop-up-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 100vh;
  justify-content: center;
  align-items: center;
  background-color: rgb(128, 128, 128, 0.6);
  z-index: 10;
}

.pop-up {
  position: relative;
  background-color: #000000;
  z-index: 6;
  width: 90%;
  border: #697ce8 2px solid;
  border-radius: 2rem;
  box-shadow: 2px 2px 8px #697ce8ff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.pop-up-close-button {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  width: 4.5rem;
}

.profile-block {
  background-color: #000000;
  border-radius: 12px;
  position: relative;
  padding: 0 1rem;
  border: 1px solid #8d8d8dff;
}

.terms-and-conditions-footer {
  position: fixed;
  bottom: 0.2rem;
  width: 100%;
  text-align: center;
}

.notification {
  /* circle shape, size and position */
  position: absolute;
  right: -0.7em;
  top: -0.7em;
  min-width: 1.6em; /* or width, explained below. */
  height: 1.6em;
  border-radius: 0.8em; /* or 50%, explained below. */
  border: 0.05em solid white;
  background-color: red;

  /* number size and position */
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8em;
  color: white;
}
