/* Custom properties */
:root {
  /* Colors */
  --primary: #02091b;
  --secondary: #e3e4e8;
  /* Typography */
  --font-family: Helvetica, Arial, sans-serif;
}

/* Dark mode */
/*
@media (prefers-color-scheme: dark) {
  :root {
    --secondary: #02091b;
    --primary: #e3e4e8;
  }
}*/

/* Reset box */
* {
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  vertical-align: baseline;
}

/* Images */
img,
picture,
video,
iframe,
figure {
  max-width: 100%;
  width: 100%;
  display: block;
}

/* Reset links... */
a {
  display: block;
  text-decoration: none;
  color: inherit;
  font-size: inherit;
}

p a {
  display: inline;
}

/* Reset lists */
li {
  list-style-type: none;
}

/* Smooth anchors */
html {
  scroll-behavior: smooth;
}

/* Reset fonts */
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
strong,
blockquote,
i,
b,
u,
em {
  font-size: 1em;
  font-weight: inherit;
  font-style: inherit;
  text-decoration: none;
  color: inherit;
}

/* Reset quotes */
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/* Style selections */
::-moz-selection {
  background-color: var(--primary);
  color: var(--secondary);
}
::selection {
  background-color: var(--primary);
  color: var(--secondary);
}

/* Reset forms */
form,
input,
textarea,
select,
button,
label {
  font-family: inherit;
  font-size: inherit;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  background-color: transparent;
  color: inherit;
  display: block;
  /* opcional */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Reset tables */
table,
tr,
td {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Default styles SVG */
svg {
  width: 100%;
  display: block;
  fill: var(--primary);
}

/* Default body styles */
body {
  min-height: 100vh;
  font-size: 100%;
  font-family: var(--font-family);
  background-color: var(--secondary);
  color: var(--primary);
  /* opcional */
  line-height: 1.4em;
  /* opcional */
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  /* opcional */
  font-smooth: always;
  /* opcional */
  -webkit-font-smoothing: antialiased;
  /* opcional */
  -moz-osx-font-smoothing: grayscale;
}

main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 100vh;
}

svg {
  max-width: 100px;
}
