body,
header,
main,
footer,
aside,
h1,
h2,
h3,
p,
form,
button,
input,
textarea,
div,
span,
i,
a,
img,
strong,
ul,
li {
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  --body--background-color: #fff;
  --main-background-color: #fff000;
  --secondary-background-color: #fffaaa;
  --main-text-color: #000;
  --secondary-text-color: #777;
  --third-text-color: #fff;
}

body {
  background-color: var(--body--background-color);
  color: var(--main-text-color);
}

ul {
  list-style: none;
}

input {
  outline: none;
}

a {
  text-decoration: none;
  transition: filter 500ms;
  outline: none;
}

button {
  cursor: pointer;
  transition: filter 500ms;
  outline: none;
}

a:hover,
a:focus-visible,
button:hover,
button:focus-visible {
  filter: opacity(0.6);
}

.container {
  width: min(800px, 95%);
  margin: 0 auto;
}

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

.hidden {
  display: none;
}

main .container {
  padding: 30px 0;
}
