:root {
  --brand-color: hsl(358, 100%, 68%);
}

* {
  box-sizing: border-box
}

body {
  font-family: 'Poppins', sans-serif;
  background: hsl(220, 5%, 10%);
  color: hsl(220, 5%, 90%)
}

.wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh
}

.flex-inner {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  width: 100%;
  max-width: 240px;
}

.p-title {
  
  margin: 0 0 0 16px;
}

ul {
  display: grid;
  grid-auto-rows: 1fr;
  grid-gap: 4px;
  list-style: none;
  background: hsl(220, 5%, 13%);
  padding: 16px;
  border-radius: 12px;
  width: 100%;
}

li {
  display: flex;
  align-items: center;
  font-weight: 400;
  padding-left: 0;
  margin: 0;
  padding: 8px 12px;
  cursor: pointer;
  transition-property: background, color;
  transition-duration: .05s;
  transition-timing-function: ease-out;
  border-radius: 5px;
}

li:hover {
  background: hsl(220, 4%, 18%);
}

.feather-icon {
  font-size: 12px;
  color: var(--brand-color);
  height: 20px;
  width: 20px;
  margin-bottom: 0;
  margin-right: 12px;
  transition: color .05s ease-out;
}