* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

body {
  font-family: "DM Sans", BlinkMacSystemFont, Helvetica, Arial, sans-serif;
  flex-direction: column;
  background-color: #000;
  color: wheat;
}

main {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
}
main svg {
  max-width: 40%;
}
main svg path {
  fill: white;
}
main .info {
  margin-top: 6em;
}

a {
  text-decoration: none;
  color: wheat;
  font-weight: bolder;
}
a:hover {
  text-decoration: underline;
  color: #f6d290;
}
