/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */


/*
TODO
center panel
coloring
blogpls
pics+stuff
*/

/* https://coolors.co/88a2aa-ada296-e2856e-f42c04-0f1a20 */
body {
  background-color: #0f1a20;
  color: #e2856e;
  font-family: Georgia;
  font-size: 18px;
  line-height: 1.6;
  max-width: 650px;
  margin: 40px auto;
  padding: 0 10px;
}

.textarea {
  background-color: #0f1a20;
  color: #cdcddd;
  font-family: Georgia;
  font-size: 18px;
  line-height: 1.6;
  max-width: 650px;
  margin: 40px auto;
  padding: 0 10px;
}

.sneaky {
  color: #0f1a20;
}

h1, h2, h3 {
  line-height: 1.2;
}

a {
  color: #88a2aa;
}

/* found these, are very cool */
.desc {
  max-width: 550px;
  margin: 0 auto;
  padding-top: 5px;
  text-align: center;
}

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  padding: 10px;
  margin-bottom: 50px;
  margin-top: 20px;
}

.navbar ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.navbar li {
  margin: 0 10px;
}

.navbar li:not(:last-child)::after {
  content: " | ";
  margin-left: 10px;
}
