body {
  font-family: Roboto, sans-serif;
  box-sizing: border-box; 
  background-color: #000;
  color: #fff;
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card {
  width: 20rem; 
  height: 31rem;
  background-color: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem; 
  border-radius: 1.5rem;
  margin: 1rem;
}

.card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
  height: 100%;
  width: 100%;
}

.image-wrapper {
  background: transparent;
  max-width: 12rem; 
  max-height: 12rem; 
}

.profile-image {
  width: 10rem; 
  height: 10rem; 
  border-radius: 50%; 
  object-fit: cover; 
}

.button-wrapper {
  display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    align-items: stretch;
    flex-wrap: nowrap;
}

.text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h1 {
  font-size: 1.5rem;
  margin: 0;
  margin-bottom: 0.5rem;
  padding: 0;
}

h2 {
  font-size: 1rem; 
  color: #7159c1;
  margin: 0;
  padding: 0;
}

p {
  font-size: 1rem; 
  margin-top: 1.5rem; 
}


a {
  text-decoration: none;
  color: #ccc;
  font-style: normal;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  color: #fff;
  background-color: #7159c1;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
}

.button:hover {
  background-color: #7159c1dd;
}