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

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background-color: #141414;
  color: var(--clr-white);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

:root {
  --clr-green: hsl(75, 94%, 57%);
  --clr-grey: hsl(0, 0%, 20%);
  --clr-white: hsl(0, 0%, 100%);
  --clr-darkgrey: hsl(0, 0%, 12%);
  --clr-black: hsl(0, 0%, 8%);

  --fnt-light: 400;
  --fnt-normal: 600;
  --fnt-bold: 700;

  --fnt-size-14px: 0.875rem;
}

.wrapper {
  width: clamp(11.25rem, 96vh, 21.875rem);
  background-color: var(--clr-darkgrey);
  padding-bottom: 10px;
  border-radius: 15px;
}

.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.avatar {
  vertical-align: middle;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 1.25rem;
}

h1 {
  font-weight: var(--fnt-bold);
  font-size: 1.5rem;
}

h2 {
  color: var(--clr-green);
  font-weight: var(--fnt-normal);
  margin: 0.625rem;
  font-size: var(--fnt-size-14px);
}

q {
  font-size: var(--fnt-size-14px);
  margin: 1.25rem;
  text-align: center;
}

nav {
  height: 70%;
  margin: 0;
}

ul {
  height: 70%;
}

ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}

a {
  display: block;
  width: 100%;
}

li > a {
  text-decoration: none;
  color: inherit;
}

li:hover {
  background-color: var(--clr-green);
  color: var(--clr-darkgrey);
}

li {
  width: clamp(15.625rem, 80%, 21.875rem);
  background-color: var(--clr-grey);
  text-align: center;
  margin: 0.5rem;
  padding: 15px 0;
  border-radius: 10px;
  font-weight: var(--fnt-normal);
  font-size: var(--fnt-size-14px);
}
