*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: hsl(0, 0%, 8%);
  font-family: "Inter", sans-serif;
}

.container {
  display: flex;
  justify-content: center;
  min-height: 100vh;
  align-items: center;
}

.card {
  background-color: hsl(0, 0%, 12%);
  border-radius: 1rem;
  padding: 2rem;
  width: clamp(300px, 80vw, 350px);
  flex-shrink: 0;
}

.profile-img {
  border-radius: 50%;
  width: clamp(60px, 15vw, 90px);
  margin: auto;
  display: block;
  margin-top: rem;
  margin-bottom: 1.5rem;
}

.title {
  color: hsl(0, 0%, 100%);
  font-weight: 700;
  font-size: clamp(1.2rem, 4vw, 1.5rem);
  text-align: center;
  margin-bottom: 0.5rem;
}

.address {
  color: hsl(75, 94%, 57%);
  text-align: center;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.description {
  color: hsl(0, 0%, 100%);
  text-align: center;
  font-weight: 400;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  margin-bottom: 0.8rem;
}

.button-container {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  justify-content: space-around;
}

.button {
  color: white;
  text-decoration: none;
  background-color: hsl(0, 0%, 20%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: clamp(2.2rem, 6vw, 2.6rem);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 400;
}

.button:hover {
  background-color: hsl(75, 94%, 57%);
  color: hsl(0, 0%, 8%);
}
