@font-face {
  font-family: 'LexendDecaBlack';
  src: url('LexendDeca-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'LexendDecaBold';
  src: url('LexendDeca-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'LexendDecaRegular';
  src: url('LexendDeca-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Verwendung der Schriftart: */
body, html {
  height: 100%;
  font-family: 'LexendDecaBlack';
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin: 0;
  user-select: none;
}


.background {
  background-color: #000;
  position: absolute;
  width: 110%;
  height: 110%;
  background: url("a1975594-4ef1-4702-ba49-315af116d0da.png") no-repeat center center;
  background-size: cover;
  filter: blur(5px) brightness(0.7);
  z-index: -1;
}

.card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 30px 40px;
  text-align: center;
  /*box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);*/
  width: 300px;
}

.avatar {
  background: none;
  padding: 6px;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 10px;
}

.avatar img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  padding: 5px;
}

h1 {
  color: white;
  font-size: 24px;
  margin-bottom: 30px;
}

h2 {
  margin-top: -10px;
  color: white;
  font-size: 18px;
  margin-bottom: 30px;
  background: #745B7Ecb;
  border-radius: 20px;
  padding: 14px;
  font-family: "LexendDecaRegular";
}

.buttons .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  margin: 10px 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.4s ease;
  font-family: 'LexendDecaBold';
}

.buttons a:hover {
  background: rgba(255, 255, 255, 0.3);
  transition: 0.4s;
  transform: scale(1.03);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.buttons .btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.buttons img {
  width: 20px;
  height: 20px;
}

footer a {
  color: white;
  text-decoration: none;
  filter: none;

}

footer {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 14px;
  width: 8%;
  height: 4%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  display: flex;
}

badge img{
  height: 20px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
}

.status {
  position: absolute;
  right: 34%;
  top: 22%;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 100%;
  padding: 0.2px;
  color: white;
}

.status img {
  width: 27px;
  height: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#placeholder {
  height: 3px;
}