body {
  margin: 0;
  padding: 0;
  background: url('/media/background-blur.jpg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
  overflow: hidden;
}

.card, .txt-card {
  background: #232436b3;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  width: 320px;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.txt-card {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  text-align: left;
  width: 800px;
}

.avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

h1 {
  font-size: 24px;
  margin: 10px 0;
  color: #A6C4DC;
}

p {
  font-size: 16px;
  margin: 5px 0 20px;
  color: #bbb;
}

a {
  text-decoration: none;
  color: #A6C4DC;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.socials a {
  background: #232436;
  color: #A6C4DC;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  transition: background 0.3s;
}

.socials a:hover {
  background: #A6C4DC;
  color: #232436;
}

.status {
  margin-bottom: 20px;
  font-weight: bold;
  color: #A6C4DC;
}

.button {
  background: #232436;
  border: 2px solid #A6C4DC;
  color: #A6C4DC;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s, color 0.3s;
}

.button:hover {
  background: #A6C4DC;
  border-color: #A6C4DC;
  color: #232436;
}

.made-with {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 12px;
  color: #bbb;
}
