html, body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
}
body {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: white;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('images/wallpaper.png') no-repeat center center fixed;
  background-size: cover;
}

.background {
  width: 100vw;
  height: 100vh;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.socials {
  display: flex;
  flex-direction: row;
  column-gap: 32px;
}
.socials > a {
  cursor: pointer;
  height: 32px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 16px;
  color: white;
  font-size: 12;
  text-decoration: none;
}
.socials > a > img {
  margin-right: 8px;
  filter: invert(1);
}

.discord {
  background: #5865F2;
}
.discord:hover {
  background: #7A83F5;
}

.twitter {
  background: #1E9BF0;
}
.twitter:hover {
  background: rgba(26, 140, 216);
}