/* 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." */

   * {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
.content {
    width: 90vw;
    max-width: 1200px;
    margin: 0px auto;
    font-family: 'Comic Neue', serif; font-size: 24px;
    /*background-image: url("images/dergdive3.png");*/
}
.content-inner {
    margin-top: 0px;
    background-color: #759AEA;
    padding: 30px;
    border-radius: 20px;
    border: 4px solid #020409;
    font-family: 'Comic Neue', serif; font-size: 20px;
    min-height: 100%;
}
.content-subpages {
    font-family: 'Comic Neue', serif;
    background-color: #759AEA;
    height: 100%;
    min-height: 100%;
}
.content-inner p {
    margin: 8px 0px;
}
.content-inner p:last-child {
    margin-bottom: 0px;
}
body {
    font-family: 'Comic Neue', serif;
    /* background-image: url("images/dergdive3.png");*/
}
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}
li {
  margin: 5px 0;
}
.navbar {
    display: flex;
    align-items: flex-end;
}