body {
  margin: 0;
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.6;
  background-color: #fff;
  color: #333;
}

.container {
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

header {
  text-align: center;
  margin-bottom: 30px;
}

header h1 {
  font-size: 2.5em;
  color: #000;
  margin: 0;
}

header p {
  font-size: 1em;
  color: #555;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.author-info img {
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

.author-info .author-name {
  font-weight: bold;
  color: #333;
}

.read-time {
  color: #777;
  font-size: 0.9em;
}

.main-content {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.main-content img {
  width: 40%;
  border-radius: 8px;
}

.main-content .text-content {
  width: 60%;
}

.main-content h2 {
  font-size: 2em;
  margin-top: 0;
  margin-bottom: 20px;
}

li {
  text-align: left;
}

/* Media query for mobile version */
@media (max-width: 1200px) {
  .main-content {
      flex-direction: column; /* Ændrer layout til lodret */
      align-items: center;
      text-align: center;
  }

  .main-content img {
      width: 80%; /* Billedet fylder 80% af skærmen på mobilen */
      margin-bottom: 15px; /* Mellemrum mellem billede og tekst */
  }

  .main-content .text-content {
      width: 100%; /* Teksten fylder hele bredden */
  }

  .read-time {
      text-align: center;
      margin-top: 20px;
  }
  li {
    text-align: left;
  }
}
