html {
  font-size: 16px;
}

.page-wrapper {
  padding: 2rem;
}

/* Base text styles on body and common text elements */
body,
p,
span,
a,
li,
ul,
ol,
h1,
h2,
h3,
h4,
h5,
h6,
div,
label,
input,
textarea,
button,
select {
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0rem;
  font-weight: 400;
  line-height: 1.25;
  font-size: 1rem;
  color: #ff3138;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.bold-text {
  text-transform: uppercase;
}

*::-webkit-scrollbar {
  display: none;
}

.accent-text {
  text-decoration: underline;
}

.accent-color {
  color: #000;
}

/* Navigation */
.navigation-container {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

@media (max-width: 699px) {
  html {
    font-size: 14px;
  }

  /* Base text styles on body and common text elements */
  body,
  p,
  span,
  a,
  li,
  ul,
  ol,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  div,
  label,
  input,
  textarea,
  button,
  select {
    font-size: 0.8rem;
  }
}
