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

html {
  font-size: 62.5%;
}

body {
  font-family: "Montserrat", arial, Helvetica, sans-serif;
  font-size: 1.4rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #262626;
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-links {
  display: flex;
  justify-content: center;
  height: 120px;
}

.hero-links ul {
  width: 35rem;
  display: flex;
  flex-wrap: wrap;
}

.hero-links ul li {
  margin: 0 1.5rem 2rem 1.5rem;
  width: calc(50% - 3rem);
  text-align: center;
}

.hero-links ul li a {
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  display: inline-block;
  font-size: 1.2rem;
  white-space: nowrap;
  border: 1px solid white;
  border-radius: 2rem;
  padding: 1rem;
  min-width: 14rem;
  height: 37px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
}

@media only screen and (min-width: 700px) {
  .hero-links ul {
    width: 70rem;
    flex-wrap: nowrap;
  }

  .hero-links ul li {
    margin: 0 1.5rem;
    width: calc(25% - 3rem);
  }
}
