*, ::before, ::after {
  box-sizing: border-box;
  border-width: 0;
  font-family: Inter var, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

body {
  margin: 0;
}

.grid {
  height: 100dvh;
  display: flex;
  flex-direction: column;
}

.svg_wrapper {
  /* width: 550px; */
  height: 90dvh;
  width: auto;
}

svg {
  width: 100%;
  height: 100%;
  overflow: hidden;
  vertical-align: middle;
}

.tools {
  height: 10dvh;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.btn {
  text-decoration: none;
  cursor: pointer;
  border-radius: 0.375rem;
  padding: 0.625rem 0.875rem 0.625rem 0.875rem;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25rem;
  color: rgb(255, 255, 255);
}

.btn.primary {
  /* background: rgb(79, 70, 229); */
  background: rgb(248, 117, 55);
}
.btn.primary:hover {
  background: rgb(248, 137, 95);
}

.btn.secondary {
  color: rgb(17, 24, 39);
  background: rgb(255, 255, 255);
  box-shadow: rgb(255, 255, 255) 0px 0px 0px 0px inset,
              rgb(209, 213, 219) 0px 0px 0px 1px inset,
              rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}
.btn.secondary:hover {
  background: rgb(249, 250, 251);
}
