.left, .navlink {
  border-color: rgb(255, 252, 240);
  font-size: 20px;
  color: rgb(255, 252, 240);
  text-decoration: none;
  background-color: rgb(140, 24, 33);
}

.navlink {
  min-height: 40px;
  margin: 2px;
  place-items: center;
  place-content: center;
}

.left {
  display: grid;
  grid-template-columns: repeat(auto-fit, 175px);
  justify-content: center;
  border-radius: 20px;
  border-style: dashed;
  width: 220px;
  }

.navlink:hover {
  color: rgb(247, 211, 214);
  text-decoration: underline;
}