@charset "utf-8";

.container {
  width: min(100% - 30px, 1280px);
  margin-inline: auto;
}

.flex {
  display: flex;
}

.center {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
          text-size-adjust: none;
}

body {
  min-height: 100dvh;
  font-family: 'Poppins', "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  font-size: 1.6rem;
  line-height: 1.5; 
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  text-wrap: balance;
}

p, h1, h2, h3, h4 {
  overflow-wrap: break-word;
}

ul[role=list], ol[role=list]  {
  list-style: none;
}

a, i, figure, img, button,
input[type=button], input[type=submit] {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, textarea, button, select {
  font: inherit;
  border-style: none;
  outline-style: none;
}

input[type=button], input[type=submit],
input[type=reset], button, a {
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}