@import url('https://fonts.googleapis.com/css2?family=Pixelify+Sans:wght@400..700&family=Reddit+Mono:wght@200..900&display=swap');

* {
  padding: 0px;
  margin: 0px;
  list-style: none;
  font-family: 'Reddit Mono';
  font-weight: 400;
  color: #26303D;
}

body {
  background-image: url(img/stars.gif);
  background-size: 200px auto;
  color: black;
  font-family: Verdana;
  padding-top: 30px;
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 30px;
  min-width: fit-content;
  margin: auto;
}

.allContent {
  width: 85%;
  max-width: 600px;
  margin: auto;
}

header,
section {
  background-color: #F5FAF8;
  border-radius: 5px;
  border-style: ridge;
  border-color: #f2f7f7;
  border-width: 5px;
  margin-bottom: 5px;
}

#sidebarAndMainContent {
  display: grid;
  grid-template-columns: 98px auto;
  gap: 5px;
}

section,
header {
  padding: 8px;
}

h1 {
  font-family: 'Pixelify Sans';
  font-weight: 100;
  font-size: 40px;
}

h2 {
  font-family: 'Pixelify Sans';
  font-weight: 10;
  font-size: 25px;
}

h3 {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 5px;
}

p {
  font-size: 12px;
}


.bold {
  font-weight: 800;
}

.menu a:hover{
  text-decoration: underline;
}

.inline {
  display: flex;
  gap: 5px;
}

/*  Menu/Sidebar  */

.menu ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

nav li img {
  padding-right: 5px;
}

.sidebar a {
  text-decoration: none;
  display: flex;
  align-items: start;
  justify-content: start;
  font-size: 13px;
}

a.activePage {
  font-weight: bold;
}

p.mood {
  font-size: 12px;
}

p.mood a {
  margin-top: 3px;
}

#collapsedContent section, .collapsibleButton, .stamp {
  background-color: #d4e0e2;
  border-color: #accbcb;
}

.collapsibleButton {
  max-height: 20px;
}

/* Hide the actual checkbox */
input[type="checkbox"] {
  display: none;
}

/* Base styles for the button divs */
.button {
  cursor: pointer;
  text-align: left;
  display: flex;
}

.button p {
  font-size: 10px;
  margin-left: 6px;
  line-height: 10px;
}

#openButton {
  display: none;
}

/*  Section Formatting Stuff  */

.twoColumn {
  display: grid;
  grid-template-columns: min-content 1fr;
  gap: 5px;
}

.twoColumnAlt {
  display: grid;
  grid-template-columns: max-content auto;
  gap: 5px;
}

.twoColumnAltAlt {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}



/*  index.html  */

.index2 li {
  font-size: 12px;
  margin-bottom: 8px;
}

.index1 img {
  margin-top: 10px;
  height: 80px;
}

.index1 {
  max-height: min-content;
}

.index2 {
  max-height: 155px;
  overflow-y: scroll;
}

.stamp {
  background-color: #F5FAF8;
  border-radius: 5px;
  border-style: ridge;
  border-color: #accbcb;
  border-width: 5px;
}

/*  abtme.html  */

.abtme li {
  font-size: 13px;
}

.abtme h2 {
  margin-bottom: 5px;
}

.abtme1 {
  overflow: hidden;
}

.abtme2 {
  background-color: rgb(212, 224, 226);
  border-color: #cfdfdf;
  max-width: fit-content;
  max-height: fit-content;
  float: left;
  margin-right: 10px;
}



.abtme3 {
  justify-self: start;
  margin-left: 5px;
}

.abtme4 ul {
  padding-left: 1em;
}

.abtme4 li {
  list-style: square;
  list-style-position: outside;
  font-size: 12px;
}

.abtme4 p {
  margin-bottom: 5px;
}

/*  blog.html  */

.blogList a {
  text-decoration: none;
}

.blogList a:hover {
  text-decoration: underline;
}

.blogDate {
  font-size: 12px;
  color: #52616e;
}

.blogTitle {
  font-size: 18px;
  font-weight: bold;
  padding-top: 2px;
  padding-bottom: 2px;
}

.blogExcerpt {
  font-size: 12px;
}

.blogBack a {
  font-size: 12px;
  color: #52616e;
  text-decoration: none;
}

.blogBack a:hover {
  text-decoration: underline;
}

.blogPost h2 {
  font-size: 26px;
  margin-bottom: 3px;
  margin-top: 8px;
}

.blogText {
  margin-top: 10px;
}





@media only screen and (max-width: 600px) {
  body {
    padding: 5px;
    padding-top: 20px;
  }

  .allContent {
    width: 90vw;
  }

}

@media only screen and (max-width: 400px) {

.twoColumnAlt, .twoColumn, .twoColumnAltAlt {
  display: block;
}

.twoColumnMobile {
  overflow: hidden;
}
.stamp {
  float: center;
  margin-right: 10px;
}

.abtme2 {

}

}