.ph {
  font-size: 20px;
}

.input {
  font-size: 16px;
}

* {
  touch-action: manipulation;
}

*:focus {
  outline: none;
}

:root {
  font-family: "Inter", serif;
}

#root,
body,
html {
  height: 100vh;
}

body {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings:
    "clig" off,
    "liga" off;

  height: 100%;
  touch-action: manipulation;
}

#app {
  height: 100%;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
    monospace;
}

@tailwind base;
@tailwind components;
@tailwind utilities;

@layer keyframes {
  @keyframes blink {
    0% {
      opacity: 1;
    }
    50% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
}
