*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  background: #0D1B2A;
  color: #F5F0E8;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  word-break: break-word;
  overscroll-behavior-y: contain;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 16px;
  max-width: 100%;
}

:focus-visible {
  outline: 2px solid #8B1A1A;
  outline-offset: 2px;
}