html {
  background-color: #202225;
  color: #f2f2f2;
}

.container {
  max-width: 700px;
}

a.link {
  color: #f2f2f2;
}
a.link:hover {
  filter: brightness(80%);
}

.home-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  justify-items: center;
  margin: 2em 0em;
}

.home-container a.button {
  font-size: 14px;
}

.or {
  background-color: #4a4e69;
  border: 2px solid #ffffff;
  border-radius: 50%;
  padding: 10px;
  font-weight: bold;
}

h2:is(.owner, .contributor) {
  margin: 0px;
  padding: 0em 3em;
  font-size: 18px;
}

div:is(.owner, .contributor) {
  margin: 2em 0em;
}

div:is(.owner, .contributor) a {
  margin: 0px;
}

div.separator {
  height: 100%;
  width: 2px;
  background-color: #ffffff;
}

.button-container {
  display: flex;
  flex-direction: column;
}
.button-container + .button-container {
  margin-top: 1em;
}

.button-container.validated {
  position: relative;
}
.button-container.validated:after {
  position: absolute;
  right: 10px;
  top: calc(50% - 12px);
  height: 20px;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #f2f2f2;
  border-radius: 50%;
  background-color: #a7c957;
  content: "L";
  font-size: 15px;
  font-weight: bold;
  color: #f2f2f2;
  transform: scaleX(-1) rotate(-45deg);
}

.discord-server {
  display: flex;
  align-items: center;
  padding: 0.5em 2em;
}
.discord-server:hover {
  background-color: #202225;
  cursor: pointer;
}
.discord-server + .discord-server {
  border-top: 1px solid #ccc;
}

.discord-server img {
  max-height: 50px;
  max-width: 50px;
  border-radius: 50%;
}
.discord-server span {
  flex: 1;
  margin: 0em 1em;
  font-size: 20px;
}
.discord-server input[type="checkbox"] {
  margin: 0px;
}
