:root {
  --footer-height: 110px;
}

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

body {
  display: block;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  scrollbar-gutter: stable both-edges;
  /* background: white; */
  /* background: linear-gradient(to right, #3bdcf6, #a0cfca); */
}

#root {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: space-between;
}

header,
footer {
  color: black;
  text-align: center;
}

header h1 {
  margin: 0;
}

nav a {
  color: black;
  text-decoration: none;
}

main {
  position: relative;
  padding-inline: 5px;
  flex: 1 0 auto;
  width: 100%;
  margin-top: var(--header-height, 172px);
  padding-bottom: var(--footer-height);
}

h1,
h2 {
  color: #333;
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  font-weight: 600;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.2;
  font-weight: 600;
}

p {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
