/* 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." */

body {
  margin: 0;
  background-color: #000000;
  color: #ffffff;
  font-family: "Courier New", monospace;
  font-size: 14px;
}

header {
  background-color: #000000;
  color: #ff0000;
  text-align: center;
  padding: 15px 0;
  border-bottom: 1px solid #ff0000;
  white-space: pre;
  font-size: 12px;
  line-height: 1.2em;
}

.container {
  display: flex;
  min-height: 90vh;
}

nav {
  width: 200px;
  background-color: #111111;
  border-right: 1px solid #ff0000;
  padding: 10px;
  box-sizing: border-box;
}

nav a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  padding: 5px 0;
}

nav a:hover {
  color: #ff0000;
}

main {
  flex: 1;
  padding: 20px;
}

h2 {
  color: #ff0000;
  font-size: 18px;
  border-bottom: 1px solid #ff0000;
  padding-bottom: 4px;
}

.post {
  border: 2px solid #b11616; /* бордовый вместо ярко-красного */
  padding: 10px;
  margin: 15px 0;
  background-color: black;
  color: #a39f9f;
  font-family: monospace;
}

.post-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.post-header h3 {
  margin: 0;
  color: #b11616; /* бордовый заголовок */
}

.post-header .post-date {
  font-size: 12px;
  color: #b22222; /* чуть светлее бордового для даты */
}

.post-body {
  display: flex;
  flex-wrap: wrap;
}

.post-body .post-image {
  width: 150px;
  height: auto;
  margin-left: 10px;
  margin-bottom: 5px;
  float: right;
}

.lyrics-toggle {
  display: block;
  margin: 10px auto;
  background-color: #000;
  color: #800000;
  border: 1px solid #800000;
  padding: 5px 10px;
  font-family: "Courier New", monospace;
  cursor: pointer;
}

.lyrics-toggle:hover {
  background-color: #111;
}

.lyrics-text {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.6s ease, opacity 0.6s ease;
  font-weight: 100;
  text-align: center;
  font-style: italic;
  color: #ccc;
  margin-top: 0;
  line-height: 1.6em;
}

.lyrics-text.visible {
  opacity: 1;
  margin-top: 10px;
  max-height: 500px; /* если текст длиннее — можно увеличить */
  overflow-y: auto;
}

