body {
  background-color: white;
  font-family: "Raleway";
  display: flex;
  flex-direction: row;
  justify-content: center;
  font-size: 3vw;
  /* font-size: 1.5rem; */
}

@media screen and (min-width: 35em) {
  body {
    font-size: 4vw;
    /* font-size: 1.5rem; */
  }
  .container {
    gap: 1em;
  }
}

@media screen and (min-width: 64em) {
  body {
    font-size: 1.5vw;
    /* font-size: 1.5rem; */
  }
  .container {
    gap: 0.5em;
  }
}

.container {
  margin: auto;
  position: relative;
  padding: 1em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

img {
  max-width: 100%;
}

.image {
  position: relative;
  width: 70%;
  margin: auto;
}

.button-primary {
  background: transparent;
  border: black solid 3px;
  border-radius: 5px;
}

.button-secondary {
    text-decoration: none;
    color: initial;
    background: transparent;
}

a.button {
    text-decoration: none;
    color: initial;
    text-transform: uppercase;
}

hr {
  width: 100%;
  border-color: grey;
}

.icon-container {
    display: flex;
    flex-direction: row;
    gap: 2em;
    justify-content: center;
}

.icon-button {
  margin: 0;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: .5em;
}

.vertical-separator {
  border-left: 3px solid black;
  /* height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center; */
}

.icon-button img {
  max-width: 2em;
  max-height: 2em;
  width: auto;
  height: auto;
}

.link-text {
  height: auto;
  line-height: 50px;
}
