* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::selection {
  background-color: var(--secondary-color);
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body, textarea {
  font-family: 'Open Sans', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
}

h1 {
  font-size: 6rem;
  text-transform: uppercase;
}

h2 {
  font-size: 6rem;
  margin-bottom: 5rem;
  text-transform: uppercase;
  line-height: 1.2;
}

h3 {
  font-size: 5rem;
}

h4 {
  font-size: 4.5rem;
}

h5 {
  font-size: 4rem;
}

h6 {
  font-size: 3.5rem;
}

a {
  text-decoration: none;
}

a:active {
  color: var(--secondary-color);
}

a:visited, a:link {
  color: var(--primary-color);
}

.responsive-table {
  overflow: hidden;
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 36rem;
  border-collapse: collapse;
}

table caption {
  text-align: left;
  margin-bottom: 1rem;
}

table td, table th {
  border: 0.2rem solid var(--light-gray-color);
  text-align: left;
  padding: 0.5rem;
  white-space: nowrap;
}

table tfoot td {
  text-align: right;
  background-color: var(--light-gray-color);
}

table thead th {
  background-color: var(--light-gray-color);
}
