html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  /* colors */
  --white: #ffffff;

  --gray-100: #faf7f7;
  --gray-300: #bfc0c5;
  --gray-400: #a4a4a7;
  --gray-500: #797979;
  --gray-700: #383838;
  --gray-900: #1d1d1d;

  --blue-100: #368ece;
  --blue-300: #216da3;
  --blue-500: #16517c;
  --blue-600: #13415f;
  --blue-700: #192136;
  --blue-800: #141c353b;
  --blue-900: #10172b;
  --blue-900a: rgba(16, 23, 43, 0);

  --red-100: #ff7d86;
  --red-300: #f0616b;
  --red-500: #db4852;
  --red-700: #bd3841;
  --red-rgba: rgba(226, 67, 77, 0.253);

  --orange-500: #de784c;
  --orange-700: #d16537;
  --green-500: #70b26d;
  --green-700: #589455;
  --yellow-500: #dfc242;
  --yellow-700: #c7a926;

  /* fonts */
  --font-family-title: 'Exo 2', sans-serif;
  --font-family-text: 'Inter', sans-serif;
  --font-family-japanese: 'Iansui', cursive;
  --color-text: var(--gray-300);

  --title-hero-size: 4rem;
  --title-section-size: 2.5rem;
  --title-modal-size: 2rem;
  --title-medium-size: 1.75rem;
  --title-small-size: 1.5rem;

  --border-radius: 0.75rem;
  --border-radius-full: 999px;
}

body {
  overflow-x: hidden;
  background: var(--blue-900);
  background: ;
  font-family: var(--font-family-text);
}

.main {
  box-sizing: border-box;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100dvh;
  margin: 0 auto;
  padding: 1rem;
  &:before {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 100%;
    transform: translateX(-50%);
    background: url('/assets/images/dot.png') top center;
    background-size: 0.75rem;
    content: '';
    opacity: 0.4;
  }
  &:after {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 37.5rem;
    transform: translateX(-50%);
    background: url('/assets/images/wave-background.png') no-repeat top center;
    content: '';
  }
}
.main-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1280px;
  height: 100%;
  gap: 2rem;
  img {
    display: block;
    width: 100%;
    max-width: 200px;
  }
  h1 {
    color: var(--gray-100);
    font-size: 2rem;
    line-height: 2.25rem;
    font-family: var(--font-family-title);
    text-align: center;
    text-wrap: balance;
  }
  p {
    color: var(--gray-400);
    font-size: 1.5rem;
    line-height: 1.5;
    text-align: center;
    text-wrap: balance;
  }
  @media (max-width: 800px) {
    padding: 0 1rem;
    img {
      max-width: 150px;
    }
    h1 {
      font-size: 1.5rem;
      line-height: 2rem;
    }
    p {
      font-size: 1.25rem;
    }
  }
}
