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-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

:root {
    --color-primary: #98F900;
    --color-secondary: #00332F;
    --color-tertiary: #CED4DA;
    --color-quaternary: #fff;
}

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    overflow: hidden;
}

.hero {
  min-height: 100vh;                  /* ocupa a tela toda */
  background: url("/assets/imgs/em-breve-d.svg") center / cover no-repeat;
  display: flex;                     /* opcional: facilita centralizar conteúdo */
  align-items: center;
  justify-content: center;
}
/* 
.hero {
  background-image: url("/assets/imgs/em-breve-d.svg");
} */

@media (max-width: 768px) {
  .hero {
    background-image: url("/assets/imgs/em-breve-m.svg");
  }
}

h1 {
  color: var(--color-quaternary);
  font-weight: 700;
}

h2 {
    color: var(--color-primary);
    font-size: 18px;
}

h3 {
    font-size: 18px;
}

.caption {
    display: flex;
    justify-content: end;
    align-items: center;
    position: absolute;
    top: 40%;
    right: 5%;
    max-width: 700px;
    color: aliceblue;
    font-size: 2rem;
    text-align: left;
    padding: 0 25px;
    letter-spacing: 2px;
}

.caption p {
    text-transform: uppercase;
    font-size: 1.5rem;
    margin-left: 10px;
}

.caption .arena {
    color: var(--color-quaternary);
    letter-spacing: 1px;
}

.caption .amadores {
    color: var(--color-primary);
    font-style: normal;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 1px;
}

@media only screen and (max-width: 576px) {
    .caption {
        font-size: 1.5rem;
    }
}