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

:root {
  --dark-grey: hsl(0, 0%, 12%);
  --off-black: hsl(0, 0%, 8%);
  --green: hsl(75, 94%, 57%);
  --grey: hsl(0, 0%, 20%);
  --light-grey: hsl(0, 0%, 60%);
  --white: hsl(0, 0%, 100%);
}

body {
  background: var(--off-black);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  padding: 1.5rem;
}

.container {
  display: flex;
  flex-direction: column;
  background: var(--dark-grey);
  padding: 2.5rem;
  border-radius: 0.75rem;
  gap: 1.75rem;
  max-width: 24rem;
  width: 100%;
}

/* Profile information section */
.upper-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.avatar {
  border-radius: 50%;
  height: 5.5rem;
  width: 5.5rem;
}

.info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}

.info h1 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 600;
}

.info p {
  color: var(--green);
  font-size: 0.875rem;
  font-weight: 600;
}

/* Title */
.middle-section p {
  color: var(--light-grey);
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Social Link buttons */
.buttons-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.buttons-wrapper button {
  border-radius: 0.5rem;
  cursor: pointer;
  border: none;
  outline: none;
  color: var(--white);
  font-weight: 600;
  width: 100%;
  padding: 0.875rem 0;
  background: var(--grey);
  transition: all 0.3s ease;
}

.buttons-wrapper button:hover {
  background: var(--green);
  color: var(--off-black);
}