/* 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 {
  background-image: url("electric.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: white;
  font-family: Georgia;
}
.site-header {
  text-align: center;
  margin-top: 30px;
  color: red;
}

.site-title {
  font-size: 64px;
  color: red;
  letter-spacing: 6px;
  margin: 0;
}.site-tagline {
  margin-top: 12px;
  font-size: 20px;
  color: white;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}.gif-row {
  text-align: center;
}.board-scroll {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 25px;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);

  }
  .content-box {
  max-width: 700px;
  margin: 40px auto;
  padding: 25px;

  background: rgba(0, 0, 0, 0.75);
  border: 5px red;}
  .board {
  display: flex;
  flex-direction: column;
  align-items: center;

  text-decoration: none;
  color: red;
  font-weight: bold;
  font-size: 18px;
}

.board img {
  max-width: 120px;
  max-height: 120px;
  margin-bottom: 10px;
  border: 2px red;
  border-radius: 8px;
}

.board:hover img {
  filter: brightness(1.2);
}

.board:hover span {
  text-decoration: underline;
}.board-header {
  text-align: center;
  color: red;
  margin-bottom: 30px;
}
.archive-list a {
  color: red;
  text-decoration: none;
}

.archive-list a:hover {
  text-decoration: underline;
}
.rating-box {
  text-align: center;
  margin: 30px auto;
  padding: 15px;
  max-width: 300px;
  border: 2px red;
  background: black;
  font-family: monospace;
}

.star {
  font-size: 28px;
  cursor: pointer;
  color: white;
  transition: 0.2s ease;
}

.star:hover {
  color: gold;
}

.star.active {
  color: #FFD700;
  text-shadow: 0 0 6px rgba(255, 215, 0, 0.8);
}
.site-footer {
  margin-top: 60px;
  padding: 20px 0;

  background: rgba(0, 0, 0, 0.8);
  border-top: 2px red;

  text-align: center;
  font-family: monospace;
  font-size: 13px;
}

.site-footer p {
  margin: 4px 0;
  color: red;
}
html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}