* {
  font-family: "Goldman";
  text-shadow: 0px 2px 1px rgba(0, 0, 0, 0.5);
}

#header {
  display: block;
  position: absolute;
  top: 25px;
  width: calc(100% - 50px);
  left: 25px;
  right: 25px;
  margin: 0 auto;
  height: 50px;
  background-color: #cfcfcf66;
  border-radius: 10px;
}

#factions-container {
  display: block;
  position: absolute;
  top: 80px;
  width: calc(100% - 50px);
  margin: 0 auto;
  left: 25px;
}

#factions {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
  gap: 25px;
  text-align: center;
  color: white;
}

.faction {
  flex: 1;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 10px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  background-color: #f9f9f966;
}

.faction-logo {
  position: absolute;
  width: 50px;
  opacity: 0.8;
  left: 10px;
}

.glass {
  /* border */
  border-style: solid;
  border-top-width: 1px;
  border-left-width: 0px;
  border-right-width: 0px;
  border-bottom-width: 2px;

  border-top-color: rgba(255, 255, 255, 0.75);
  border-left-color: rgba(255, 255, 255, 0.75);
  border-right-color: rgba(255, 255, 255, 0.75);
  border-bottom-color: rgba(0, 0, 0, 0.5);

  /* effects */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

#name {
  font-size: 24px;
  font-weight: bold;
  color: white;
  text-align: center;
  line-height: 50px;
  user-select: none;
}

#footer {
  display: block;
  position: absolute;
  bottom: 25px;
  width: calc(100% - 50px);
  left: 25px;
  right: 25px;
  height: fit-content;

  justify-content: center;
}

#buttons {
  display: flex;
  justify-content: end;
  gap: 10px;
}

.button {
  width: 50px;
  height: 50px;
  margin: 0px;
  color: #cfcfcf66;
  cursor: pointer;
  display: flex;
  justify-content: center;

  border-radius: 100px;
}

.button img {
  margin: 5px;
  filter: drop-shadow(0px 2px 1px rgba(0, 0, 0, 0.5));
}

.button:active {
  transform: translateY(2px);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

#recruit-code {
  margin: 0 auto;
  position: relative;
  top: 0px;
  width: 100%;
  bottom: 0px;
  background-color: rgba(0, 0, 0, 0.289);
  position: absolute;
}

#recruit-image {
  display: block;
  margin: 0 auto;

  max-width: 80%;
  max-height: fit-content;

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgb(255, 255, 255);
  border-radius: 15px;
}
