html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
}
body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
}
* {
  box-sizing: border-box;
}

#app {
  display: flex;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  max-width: 1280px;
  align-items: center;
  justify-content: center;
}

#header {
  font-weight: bolder;
  padding: 1em;
  color: white;
  background-color: #1a1a1a;
  width: 100%;
}

#footer {
  text-align: right;
  padding: 1em;
  color: white;
  background-color: #1a1a1a;
  width: 100%;
}

.onboarding-view {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}
#start-button{
  padding: 2rem;
  color: white;
  background: #419cfd;
  font-size: x-large;
  border: none;
  border-radius: 1rem;
}
#start-button:hover{
  background: #2e6eb2;
  cursor:pointer;
}


