* {
  box-sizing: border-box;
}

body {
  margin: 0;
  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;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--color-white);
  width: 100%;
  min-height: -webkit-fill-available;
  overflow-y: auto;
}

html {
  scroll-behavior: smooth;
}

a {
  cursor: pointer;
}

textarea {
  resize: none;
}

button {
  cursor: pointer;
}

input:focus,
textarea:focus {
  outline: 1px solid var(--color-black);
  opacity: 0.8;
}
