
.anchors{
  /* margin-top: 32px */
  margin-top: 40px;
  margin-bottom: 32px;
  display: flex;
  flex-wrap: wrap;
}

.anchors .anchor{
  font-size: 18px;
  border: 1px solid;
  border-radius: 20px;
  border-color: #e0e0e0;
  padding: 4px 24px;
  transition: background-color 0.2s ease;
  text-decoration: none;
  margin-right: 4px;
}
.anchors .anchor:hover{
  background-color: #E0E0E0;
  color: #AA013A;
}


@media screen and (max-width: 768px) {
  .anchors {
    margin-top: 32px;
  }
}