@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&family=Oswald:wght@400;500;600;700&family=Play:wght@400;700&display=swap');

/** Reset de estilos */
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,
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 {
    outline: 0;
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    color: #fff;
    background: #000;
    font-family: 'Lato', Arial, sans-serif;
    font-size: 1em;
    line-height: 1em;
    z-index: 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;
}
:focus { outline: 0; }
:required, :invalid {
    outline: 0;
    box-shadow: none;
}
html {
    height: 100%;
    font-size: 80%;
}
div {
    position: relative;
}
img {
    -ms-interpolation-mode: nearest-neighbor;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
button:focus, input:focus {
    outline: 0;
}
.noselect {
    -webkit-touch-callout: none;
      -webkit-user-select: none;
       -khtml-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
}
button {
    border: 0;
    border-radius: 0;
    font-family: 'Lato';
    cursor: pointer;
}
strong {
    font-weight: bold;
}
a {
    text-decoration: none;
}
input[type="number"] {
    -moz-appearance: textfield;
}
input[type="number"]::-webkit-inner-spin-button, 
input[type="number"]::-webkit-outer-spin-button { 
    -webkit-appearance: none; 
    margin: 0; 
}

/** General */
main {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60%;
    height: calc(100dvh - 40%);
    top: 20%;
    left: 20%;
}
main > img {
    max-width: 100%;
    max-height: 100%;
}