
:root  {
  --main_bg: hsl(243, 38%, 19%);
  --sub_1: hsl(204, 71%, 26%);
  --sub_2: hsl(192, 32%, 46%);
  --main_text: hsl(0, 0%, 93%);

}

* {
  padding: 0;
  margin: 0;
}

body {
  font-size: 13px;
  background-color: var(--main_bg);
  color: var(--main_text);
}

.wrapper {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;

}

.last-5 {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

#header-blurb {
  margin-top: 1em;
  width: 25em;
  height: 5em;
  border-radius: 15px;
  background-color: var(--sub_1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
