/* Reset CSS - Normalize browser styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  font-family: 'Outfit', sans-serif;
  overflow-x: hidden;
  font-size: 16px;
  background: #fff;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

input, button, textarea, select {
  font: inherit;
  font-size: 1rem;
}

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