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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.app {
  margin: auto;
  max-width: 95%;
  width: 600px;
  padding: 0 1rem;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0.5em;
}

p {
  margin-bottom: 1em;
}

table {
  border: 2px solid #222;
}

td {
  border: 0px solid transparent;
  padding: 0.25em;
  margin: 0;
}

tbody tr:nth-child(odd) {
  background-color: rgba(0.5, 0.5, 0.5, 0.1);
}

.full-width {
  width: 100%;
}

.monospace {
  font-family: 'Monaco', Courier, monospace;
}

.search-form {
  display: flex;
  gap: 0.5em;
  flex-direction: row;
  margin-bottom: 1em;
}

.pagination {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 1em;
  width: 100%;
  gap: 0.5em;
}