* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}

body,
html {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #323232;
}

html {
  font-size: 10vw;
}

@media screen and (max-width: 360px) {
  html {
    font-size: 36px;
  }
}

@media screen and (min-width: 540px) {
  html {
    font-size: 54px;
  }
}

body {
  max-width: 540px;
  min-width: 360px;
  margin: 0 auto;
}

#app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.container {
  flex-grow: 1;
}

img {
  vertical-align: bottom;
  max-width: 100%;
}

a {
  text-decoration: none !important;
  color: inherit;
}

ul,
ol {
  list-style: none;
}
