/* Base styles with retro fonts */
body {
  font-family: 'IBM Plex Mono', monospace;
  line-height: 1.6;
  color: #000000;
}

@media only screen and (max-width: 768px) {
  body, html {
    margin: 0;
    padding: 0;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
}

h1 {
  font-size: 2.5em;
  margin-top: 0;
}

h2 {
  font-size: 1.8em;
}

.container {
  width: 60%;
  margin: 0 20%;
  box-shadow: 10px 10px 0px #000000;
  padding: 20px;
  background-color: white;
  border: 2px solid #000000;
  transition: box-shadow 0.3s ease-out;
}

@media only screen and (max-width: 768px) {
  .container {
    width: 100%;
    margin: 0;
    padding: 0;
    box-shadow: none;
    border: none;
    background-color: transparent;
  }
}

/* Blog post styling */
.blog-list {
  list-style: none;
  padding: 0;
}

.blog-post-item {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #000000;
}

.blog-post-item:last-child {
  border-bottom: none;
}

.blog-post-item h2 a {
  color: #000000;
  text-decoration: none;
  font-size: 1.3em;
  font-weight: bold;
  transition: all 0.3s ease;
}

.blog-post-item h2 a:hover {
  color: #000000;
  text-decoration: none;
  font-size: 1.4em;
}

.post-description {
  font-size: 1.1em;
  margin: 10px 0;
}

.post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.9em;
  color: #666666;
}

.post-date {
  font-style: italic;
}

.post-tags {
  display: flex;
  gap: 8px;
}

.tag {
  background-color: #000000;
  color: #ffffff;
  padding: 4px 8px;
  border-radius: 0;
  font-size: 0.8em;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tag:hover {
  background-color: #333333;
}

.owner {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
}

.possum {
  width: 80%;
  max-width: 500px;
}

@media only screen and (max-width: 360px) {
  .possum {
    width: 100%;
  }
}

@media only screen and (max-width: 1366px) {
  .possum {
    width: 80%;
  }
}

.possum:hover {
  filter: grayscale(1);
  -webkit-transition: filter 0.15s ease-in;
  -moz-transition: filter 0.15s ease-in;
  -ms-transition: filter 0.15s ease-in;
  -o-transition: filter 0.15s ease-in;
  transition: filter 0.15s ease-in;
}

.jokes:hover {
  background-image: linear-gradient(
    to left,
    violet,
    indigo,
    green,
    blue,
    black,
    orange,
    red
  );
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 1.5em;
  -webkit-transition: font-size 1s ease-out;
  -moz-transition: font-size 1s ease-out;
  -ms-transition: font-size 1s ease-out;
  -o-transition: font-size 1s ease-out;
  transition: font-size 1s ease-out;
}
