html,
body {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  color: #fff;
}

body {
  background: url("./assets/img/background.webp") no-repeat center center fixed;
  background-size: cover;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.main {
  position: relative;
  filter: blur(10px);
  opacity: 0;
  will-change: opacity, filter;
  transition: opacity 2s ease-in-out, filter 2s ease-in-out;
}
#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

header {
  padding-top: 3em;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

header > .pfp-info > img {
  width: 14em;
  height: 14em;
  border-radius: 100%;
  border: 3px solid rgba(255, 255, 255, 0.9);
  box-shadow: rgb(28 32 93 / 28%) 0px 2px 8px 0px;
  position: relative;
}

#dot {
  display: inline-block;
  margin-right: 0.1em;
  border-radius: 50%;
  width: 0.6em;
  height: 0.6em;
}

.pfp-info {
  position: relative;
}

.meta {
  position: absolute;
  bottom: 8px;
  left: 10.2em;
}

#dot {
  display: block;
  margin-right: 0.1em;
  border-radius: 50%;
  width: 1.4em;
  height: 1.4em;
  flex-shrink: 0;
}

.discord {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 0.5em 0.38em 0.5em 0.46em;
  border-radius: 20px;
  box-sizing: border-box;
  transition: padding 0.3s ease;
}

#status {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  cursor: default;
  user-select: none;
  pointer-events: none;
  transition: max-width 0.4s ease, opacity 0.4s ease, margin-left 0.4s ease,
    padding-right 0.4s ease;
}

.discord:hover #status {
  max-width: 220px;
  opacity: 1;
  margin-left: 0.2em;
  padding-right: 0.3rem;
}

header > h1 {
  display: inline-block;
  font-size: 1.3em;
  font-weight: bold;
  border-radius: 1em;
  background-color: #000a;
  color: #fff;
  padding: 0.3em 0.6em;
}

ul {
  box-sizing: border-box;
  list-style: none;
  margin: 0 auto;
  padding: 0.8em 0.64em 0.6em 0.68em;
}

ul > li {
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 10em;
  backdrop-filter: blur(10px) saturate(160%) contrast(180%);
  -moz-backdrop-filter: blur(10px) saturate(160%) contrast(180%);
  padding: 1em;
  margin: 1.2em auto;
  box-shadow: rgb(28 32 93 / 28%) 0px 2px 8px 0px;
  max-width: 480px;
}

ul > li > a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.8em;
}
li > a > img {
  width: 2em;
}
a {
  display: block;
  color: #000;
  text-decoration: none;
  font-size: 1.23em;
}

/* Some reponsive */
@media (max-width: 45rem) {
  header > h1 {
    font-size: 1.4em;
  }

  header > img {
    width: 12em;
    height: 12em;
  }

  a {
    font-size: 1.2em;
  }
}

@media (min-width: 120rem) {
    header > h1 {
      font-size: 1.6em;
    }

  header > img {
    width: 38em;
    height: 38em;
    object-fit: cover;
  }

  a {
    font-size: 2em;
  }
  ul > li {
    padding: 1.4em;
    margin: 1.8em auto;
    max-width: 840px;
  }

  li > a > img {
    width: 1.4em;
  }
}
