.QuickLinkItem {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 300px;
  max-width: 400px;
  margin: 10px;
  padding: 8px 15px;
  border-radius: 8px;
  text-align: center;
  background: var(--clr-primary);
  transition: all 300ms linear;
}

@media screen and (min-width: 769px) {

.QuickLinkItem {
    width: 450px;
    max-width: 500px;
    padding: 8px 8px;
}
  }

.QuickLinkItem:hover {
    background-color: var(--clr-primary);
    color: white;

    .QuickLinkItem-title {
      color: white;
    }
  }

@media screen and (min-width: 1026px) {

.QuickLinkItem {
    background: white;
}
  }

.QuickLinkItem-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 3.75rem;
  background-color: var(--clr-primary);
  color: #ffffff;
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.QuickLinkItem-icon {
  font-size: 1.875rem;
}

.QuickLinkItem-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

@media screen and (min-width: 769px) {

.QuickLinkItem-title {
    font-size: 1.625rem;
    font-weight: 700;
}
  }

@media screen and (min-width: 1026px) {

.QuickLinkItem-title {
    color: var(--clr-primary);
}
  }
