:root {
  font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;

  color-scheme: light dark;
  color: rgba(255, 255, 255, 0.87);
  background-color: #242424;

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

a {
  font-weight: 500;
  color: #646cff;
  text-decoration: inherit;
}
a:hover {
  color: #535bf2;
}

body {
  margin: 0;
  display: flex;
  place-items: center;
  min-width: 100vw;
  min-height: 100vh;
}

h1 {
  font-size: 3.2em;
  line-height: 1.1;
}

#app {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}

.logo {
  height: 6em;
  padding: 1.5em;
  will-change: filter;
}
.logo:hover {
  filter: drop-shadow(0 0 2em #646cffaa);
}
.logo.vanilla:hover {
  filter: drop-shadow(0 0 2em #f7df1eaa);
}

.card {
  padding: 2em;
}

.read-the-docs {
  color: #888;
}

button {
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 0.6em 1.2em;
  font-size: 1em;
  font-weight: 500;
  font-family: inherit;
  background-color: #1a1a1a;
  cursor: pointer;
  transition: border-color 0.25s;
}
button:hover {
  border-color: #646cff;
}
button:focus,
button:focus-visible {
  outline: 4px auto -webkit-focus-ring-color;
}

@media (prefers-color-scheme: light) {
  :root {
    color: #213547;
    background-color: #ffffff;
  }
  a:hover {
    color: #747bff;
  }
  button {
    background-color: #f9f9f9;
  }
}

/* generic */

.app {
  position: relative;
  overflow: hidden;
  height: 100vh;
  width: 100vw;
}

/* counter */

.overlay {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.overlay > div {
  background-color: rgba(26, 26, 26, 0.8);
  border-radius: 4px;
  padding: 8px 4px;
}

@media (prefers-color-scheme: light) {
  .overlay > div {
    background-color: rgba(255, 255, 255, 0.8);
  }
}

/* modal */

.modal {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 400px;
  max-height: 80vh;
  background-color: rgb(0, 0, 0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 200;
  transform: translateY(0);
  transition: transform 0.2s ease-out;
}

.modalClosed {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 400px;
  max-height: 80vh;
  background-color: rgb(0, 0, 0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 200;
  transform: translateY(100%);
  transition: transform 0.2s ease-in;
}

.toggle {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
}

#modal > section > a {
  padding-inline: 16px;
}

.apiResult {
  width: 80%;
  height: 100px;
  background-color: #121212;
  margin: 16px 0;
  border-radius: 8px;
  overflow: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* element */

.elementContainer {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: calc(100% - 144px);
  margin: auto 0;
  z-index: 100;
}

.element {
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: -1;
}

.name {
  position: absolute;
  width: max-content;
  padding: 8px 42px 8px 24px;
  clip-path: polygon(0 0, 80% 0, 100% 100%, 0 100%);
  background-color: #242424;
  transition: all 0.02s linear;
}

@media (prefers-color-scheme: light) {
  .name {
    background-color: #ffffff;
  }
}

.table {
  position: relative;
}
