body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: monospace;
  background-color: #222436;
  text-align: center;
}

#welcome {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 30px;
  margin-top: 70px;
  margin-bottom: 70px;
}

#header {
  width: 50vw;
  max-width: 300px;
  text-align: justify;
  text-align-last: justify;
  text-justify: distribute;
  margin-top: 16px;
}

#jonas {
  display: block;
  width: 50vw;
  max-width: 100%;
}

.textbox {
  max-width: 500px;
  text-align: justify;
  text-justify: distribute;
}

section {
  display: flex;
  flex-direction: column;
}

h1 {
  font-weight: 600;
  font-size: 35px;
  color: #86E1FC;
}

h2 {
  width: 100px;
  flex-shrink: 0;
  color: #C099FF;
}

p {
  font-size: 16px;
  color: #BCE089;
}

a {
  color: #86E1FC;
}

ul {
  color: #BCE089;
}

@media (min-width: 500px) {
  section {
    flex-direction: row;
    justify-content: space-between;
  }
}

hr {
  border-top: 0;
  color: #B7C1E1;
}

