div#content1 {
    text-align: center;
}

h1#landingheader {
    font-family: Canela, Georgia, serif;
    font-size: 3rem;
    line-height: 1.29;
    letter-spacing: 0.01rem;
    font-weight: 400;
    padding-top: calc(3.6rem + 0.6rem);
}

h1#landingheader::before {
    content: "";
    display: block;
    background: #181C22;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 1px;
    height: 3.6rem;
}

p#landingsubhead {
    font-family: Neue Haas Grotesk, Helvetica Neue, helvetica, arial, sans-serif;
    /* font-size: 1.8rem; */
    font-weight: 400;
    line-height: 1.63;
    color: #181C22;
    /* letter-spacing: 0.09rem; */
}

p#landingsubhead a {
    color: #000;
}

h2#select-sub {
    font-weight: 400;
    font-family: Canela, Georgia, serif;
    font-size: 2.2rem;
    line-height: 1.41;
}

#grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.grid-item {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Figtree, Helvetica Neue, helvetica, arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  width: 200px;
  padding: 1.5rem 1rem;
  margin: 1rem 0 0 0;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid black;
  background-color: white;
  color: black;
  cursor: pointer;
}

.grid-item.selected {
  background-color: #181C22;
  color: white;
  border: none;
}

.grid-item,
.grid-item:visited {
  color: black;
}

.grid-item.selected,
.grid-item.selected:visited {
  color: white;
}

.grid-item:hover {
  text-decoration: none;
}
