* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Open Sans';
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overflow-y: scroll;
}

#app {
  min-height: calc(100vh);
  display: flex
;
  flex-direction: column;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

input,
textarea {
  font-family: inherit;
}

::placeholder {
  color: #b1b1b1;
}

select {
  appearance: none;
  background-color: transparent;
  border: none;
  padding: 0 1em 0 0;
  margin: 0;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  cursor: inherit;
  line-height: inherit;
  outline: none;
}

a,
button {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  font-family: 'Open Sans';
  padding: 0;
  outline-color: #4d90fe;
  border: unset;
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
  border-radius: unset;
  font-size: 16px;
  line-height: 1.2;
  background: unset;
}

a {
  color: unset;
}

#app {
  min-height: calc(100vh);
  display: flex;
  flex-direction: column;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}