@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,100..1000&display=swap');

* {
  font-family: DM Sans, sans-serif;
  --accent: #ff0000;
}

body {
  margin: 0;
}

.wrapper {
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  
  background: linear-gradient(135deg, #ffffc4 0.000%, #ff6164 50.000%, #b00012 100.000%);
}

.container {
  background: #ffffff75;
  border: 3px #ffffff35 solid;
  backdrop-filter: blur(25px);
  border-radius: 16px;
  padding: 8px;
  width: 380px;
}

.name-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.name {
  margin: 0;
  color: #fff;
  font-weight: 900;
}

.description {
  font-weight: 200px;
  color: #fff;
}

.link-wrapper {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.link-wrapper > a {
  background: #fff;
  color: var(--accent);
  border-radius: 16px;
  padding: 8px;
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  transition: 0.3s ease;
}

.link-wrapper > a:hover {
  scale: 1.01;
}

.link-wrapper > a:active {
  scale: 0.99;
}


.footer-links {
  display: flex;
  justify-content: center;
  width: 100%;
  position: absolute;
  bottom: 0px;
}

.footer-links > a {
  color: #fff;
  text-decoration: none;
}

.footer-links > a:hover {
  color: #f5f5f5;
}
