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

body {
  background-color: hsl(0, 0%, 8%);
  font-family: "Inter", sans-serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  width: 320px;
  margin: 0 auto;
}

.card {
  border-radius: 10px;
  background-color: hsl(0, 0%, 12%);
  margin-bottom: 20px;
}

.card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 90px 30px;
  background-color: red hsl(0, 0%, 12%);
}

h2 {
  color: hsl(0, 0%, 100%);
  font-size: 22px;
  font-weight: 500;
}

.profile img,
h2 {
  margin-top: 20px;
  margin-bottom: 5px;
}

.profile-location {
  color: hsl(75, 94%, 57%);
  margin-bottom: 20px;
  font-size: 13px;
}

.profile-title {
  color: white;
  margin-bottom: 15px;
  text-align: center;
  font-size: 12px;
}

.btn-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.btn {
  background-color: hsl(0, 0%, 20%);
  text-decoration: none;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  width: 100%;
  text-align: center;
  font-weight: 500;
}

a:last-child {
  margin-bottom: 20px;
}

.btn:hover {
  background-color: hsl(75, 94%, 57%);
  color: hsl(0, 0%, 8%);
  font-weight: 800;
}

.attribution {
  font-size: 11px;
  text-align: center;
}
.attribution a {
  color: hsl(228, 45%, 44%);
}
