/* platform/introduction/digital-soul/style.css */

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

body {
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
  overflow-y: scroll;
  overflow-x: hidden;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: 0.03em;
  background: rgba(22, 27, 34, 1);
  color: #fff;
}

body::-webkit-scrollbar {
    width: 6px;
}

body::-webkit-scrollbar-track {
    background: #555;
}

body::-webkit-scrollbar-thumb {
    background: #888;
}

main {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 85px;
  padding: 10px;
}

h1 {
  color: #0ef;
  text-shadow: 1px 1px 1px #000;
}

h2 {
  font-size: 0.8525em;
  opacity: 0.9;
  color: lightskyblue;
  text-shadow: 1px 1px 1px #000;
  font-style: italic;
}
