*, *::before, *::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
body {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  margin-bottom: 40px;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
input, button, textarea, select {
  font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}
p {
  text-wrap: pretty;
  margin: 8px 0;
}
h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
  margin-bottom: 8px;
}
#root, #__next {
  isolation: isolate;
}

#header {
  text-align: center;
  text-wrap: balance;
  margin-bottom: 20px;
}
.container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0 20px;
  max-width: 1180px;
  margin: 0 auto;
}
.item {
  flex: 1 1 calc(50% - 10px);
  min-width: 300px;
  max-width: 560px;
}
.text {
  padding: 20px;
  line-height: 1.5
}
.message {
  margin: 30px auto;
  text-align: center;
  line-height: 2.0;
  width: 300px;
  font-size: 28px;
}
.center {
  text-align: center;
}
.small {
  font-size: 13px;
}
.mt24 {
  margin-top: 24px;
}
.desktop-break {
  display: none;
}
@media (min-width: 620px) {
  .desktop-break {
    display: block;
  }
}
.title {
  font-size: 19px;
  text-align: center;
  text-wrap: balance;
}
