/* CSS reset */
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;
}

body {
    background-color: rgb(248, 232, 188);
}

main {

  /* centrado vertical para !DOCTYPE */
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  height: calc(100% - 50px);
  padding: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

main .main_error-code {
  font-size: calc(4.86188vw + 65.76796px);
  line-height: 1;
  text-transform: uppercase;
  color: #191919;
}

main .main_error-title {
  font-size: calc(0.88398vw + 18.68508px);
  text-transform: capitalize;
  color: #191919;
  margin-bottom: calc(0.44199vw + 18.34254px);
}

main .main_error-message {
  font-size: calc(0.44199vw + 14.34254px);
  color: #191919;
}
