@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;600&display=swap');

:root {
  --font-family-primary: "Nunito Sans", sans-serif;
  --bg-color-var: linear-gradient(
    0deg,
    rgba(2, 0, 36, 1) 0%,
    rgba(9, 9, 121, 1) 0%,
    rgba(0, 212, 255, 1) 100%
  );
}


body,
html {
  margin: 0px;
  padding: 0px;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  font-variant-ligatures: no-common-ligatures;
  font-family: var(--font-family-primary);
}

body::before {
  /* background: var(--bg-color-var); */
  content: "";
  display: block;
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100vh;
  z-index: -10;
  background-size: cover;
  background-position: center center;
  transition: all 250ms ease-in-out 0s;
}

.appbar {
  margin: 4rem auto 2rem;
  padding: 1em 1em 2rem;
  max-width: 23rem;
  border-radius: 16px;
  background-color: rgba(0, 0, 0, 0.1);
  transition: all 250ms ease-in-out 0s;
}

.profil-picture-bar {
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  padding-top: 3rem;
}

.profil-picture-image {
  width: 120px;
  height: 120px;
  display: flex;
  border: 1px solid rgb(255, 255, 255);
  border-radius: 120px;
  box-shadow: rgb(0 0 0 / 10%) 0px 5px 16px 4px;
}

.user-name {
  font-size: 1.5em;
  font-family: var(--font-family-primary);
  text-align: center;
  margin-top: 1.5rem;
  margin-bottom: 0px;
}

.user-email {
  font-size: 1.2rem;
  font-family: var(--font-family-primary);
  text-align: center;
  opacity: 0.75;
  margin-top: 0.5rem;
  margin-bottom: 0px;
  font-weight: 600;
}

.user-bio {
  white-space: pre-line;
  margin: 1.3rem;
  font-size: 1.1rem;
  font-family: var(--font-family-primary);
  line-height: 1.6rem;
  text-align: left;
  font-weight: 600;
}

.linkbar {
  padding: 1rem 0px;
  margin: 0px auto;
  max-width: 20rem;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  flex-direction: column;
}

.link-item {
  display: flex;
  align-items: center;
  background-color: #333333;
  color: rgb(51, 51, 51);
  font-size: 1rem;
  font-family: var(--font-family-primary);
  font-weight: 600;
  text-align: left;
  letter-spacing: 0.03em;
	border-radius: 0.8em!important;
    border-left-width: 2px!important;
    border-top-width: 2px!important;
    border-right-width: 2px!important;
    border-color: #f7d057!important;
    border-top-style: solid!important;
    border-right-style: solid!important;
    border-left-style: solid!important;
  margin-bottom: 1.2rem;
  width: 100%;
  height: 48px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.link-item:hover {
  opacity: 0.7;
}

.link-icon {
  position: relative;
  font-size: 23px;
  top: 1px;
  left: 0px;
  margin: 0px 1rem;
}

.link-name {
  text-align: center;
  position: relative;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 13rem;
}

.mw-featured {
  animation: wiggle 0.95s cubic-bezier(.36,.07,.19,.97) infinite;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.mw-footer {
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
}

.mw-footer-copyright {
  margin-bottom: 20px;
  width: 25px;
}

@keyframes wiggle {
  10%,
  90% {
    transform: translate3d(0px, 0, 0);
  }

  20%,
  80% {
    transform: translate3d(0px, 0, 0);
  }

  30%,
  50%,
  70% {
    transform: translate3d(-3px, 0, 0);
  }

  40%,
  60% {
    transform: translate3d(3px, 0, 0);
  }
}

@media (max-width: 1440px) {
  .appbar {
    margin: 4rem auto 2rem;
    padding: 1rem 1rem 2rem;
  }
}

@media (max-width: 1024px) {
  .appbar {
    margin: 3rem auto 2rem;
    padding: 1rem 1rem 2rem;
  }
  .link-item {
    font-size: 0.9rem;
  }
  .profil-picture-bar {
    padding-top: 2rem;
  }
}

@media (max-width: 425px) {
  .appbar {
    margin: 1.5rem 10px;
    padding: 1rem 1rem 2rem;
  }

  .profil-picture-bar {
    padding-top: 1.5rem;
  }
}

@media (max-width: 320px) {
  .appbar {
    margin: 1.5rem 10px;
    padding: 1rem 1rem 2rem;
  }
}
