@font-face {
  font-family: "RomanceA";
  src: url("assets/font/RomanceA.ttf") format("truetype");
}

@font-face {
  font-family: "000webfont";
  src: url("assets/font/000webfont.ttf") format("truetype");
}

@font-face {
  font-family: "basiic";
  src: url("assets/font/basiic.ttf") format("truetype");
}

body {
  margin: 0;
  min-height: 100vh;
  background-image: url("assets/images/background.jpg");
  background-repeat: repeat;
  display: flex;
  justify-content: center;
  color: white;
  font-family: "basiic", sans-serif;
  cursor:
    url("assets/images/cursor-star.png") 12 12,
    auto;
}

.body-wrapper {
  margin-top: 50px;
  margin-bottom: 50px;
  width: 1200px;
  min-height: 800px;
  border: 8px ridge peru;
  background-image:
    url("assets/images/sparkle-overlay.png"),
    url("assets/images/body-background.jpg");
  background-repeat: repeat, repeat;
  background-position:
    0 0,
    0 0;
  box-shadow: 10px 10px 0px black;
  animation: sparkle-drift 9s linear infinite;
}

@keyframes sparkle-drift {
  from {
    background-position:
      0 0,
      0 0;
  }
  to {
    background-position:
      200px 200px,
      0 0;
  }
}

.cursor-sparkle {
  position: absolute;
  pointer-events: none;
  font-size: 14px;
  line-height: 1;
  transform: translate(-50%, -50%);
  animation: sparkle-fade 0.6s ease-out forwards;
  z-index: 9999;
}

.cursor-sparkle::before {
  content: "\2726";
}

@keyframes sparkle-fade {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.8) translateY(-10px);
  }
}

header {
  border-bottom: 4px ridge peru;
  background-image: url("https://i.pinimg.com/1200x/5e/fd/88/5efd883dc75118ce7ae720891fec11f9.jpg");
  background-size: cover;
  background-position: center;
  height: 200px;
  display: flex;
  align-items: flex-end;
}

marquee.announcer {
  background-color: black;
  color: white;
  font-family: "RomanceA", sans-serif;
  font-weight: bold;
  padding: 5px;
  border-top: 2px solid peru;
}

nav {
  background-color: #222;
  border-bottom: 4px ridge peru;
  padding: 15px 0;
}

nav ul {
  font-family: "RomanceA", sans-serif;
  font-size: 28px;
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

nav li {
  display: inline-block;
  margin: 0 20px;
}

nav a {
  color: #ff00ff;
  text-decoration: none;
  text-shadow: 2px 2px black;
}

nav a:hover {
  color: yellow;
  text-decoration: underline;
}

.content-wrapper {
  display: flex;
  flex-direction: row;
  height: 1200px;
}

aside {
  width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
  background-image: url("assets/images/aside-background.jpg");
  border-right: 4px ridge peru;
}

.profile-picture {
  width: 150px;
  height: 150px;
  border: 4px outset peru;
  background: #eeaeca;
  background: radial-gradient(
    circle,
    rgba(238, 174, 202, 1) 0%,
    rgba(148, 187, 233, 1) 100%
  );
  margin-bottom: 10px;
}

.profile-picture img {
  display: block;
}

.aside-title {
  font-family: "RomanceA", sans-serif;
  color: burlywood;
  text-shadow: 2px 2px black;
  margin: 10px 0;
}

.aside-box {
  background-image: url("assets/images/aside-box.png");
  background-size: contain;
  background-repeat: no-repeat;
  padding: 10px;
  width: 180px;
  height: 140px;
  font-size: 14px;
  color: #222;
}

.aside-box-title {
  text-align: center;
  margin-bottom: px;
}

.aside-box-text {
  margin-top: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-stats {
  background: #000;
  border: 2px inset gray;
  padding: 10px;
  width: 180px;
  text-align: center;
  margin-top: 20px;
}

.hit-counter {
  font-family: "000webfont", "Courier New", monospace;
  font-size: 20px;
  letter-spacing: 2px;
  color: #0f0;
  background: #111;
  border: 1px solid #0f0;
  padding: 4px 6px;
  margin: 0;
}

.stats-label {
  font-size: 11px;
  color: silver;
  margin: 6px 0 0;
}

.main-article {
  width: 600px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.main-article-section {
  background: rgba(0, 0, 0, 0.7);
  border: 4px outset peru;
  padding: 20px;
}

.construction-banner {
  display: block;
  margin-bottom: 12px;
}

.pet-gallery {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.pet-gallery img {
  border: 4px ridge peru;
}

.comment-board input[type="text"],
.comment-board textarea {
  width: 80%;
  background: #333;
  color: #00ff00;
  border: 2px inset gray;
  margin-bottom: 10px;
  font-family: "Courier New", monospace;
}

.comment-board input[type="submit"] {
  background: silver;
  border: 3px outset white;
  padding: 5px 10px;
  font-weight: bold;
  cursor: pointer;
}

.comment-board input[type="submit"]:active {
  border-style: inset;
}

.sec-article {
  width: 300px;
  padding: 10px;
  background-image: url("assets/images/sec-article-background.jpg");
  border-left: 4px ridge peru;
}

.sec-article-section {
  margin-bottom: 20px;
}

marquee.blinkies {
  background-color: black;
  height: 40px;
}

#calendar-container {
  background-image: url("assets/images/calender.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  max-width: 280px;
  padding: 10px;
  margin: 0 auto;
  font-family: "basiic", sans-serif;
  text-align: center;
}

.calendar-header {
  font-family: "RomanceA", sans-serif;
  font-size: 20px;
  color: #ff00ff;
  text-shadow: 2px 2px white;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

#calendar-table {
  margin: auto;
  width: 245px;
  max-width: 245px;
  border-collapse: collapse;
  table-layout: fixed;
}

#calendar-table th,
#calendar-table td {
  width: 35px;
  height: 35px;
  text-align: center;
  vertical-align: middle;
  box-sizing: border-box;
}

#calendar-table th {
  color: black;
  font-size: 14px;
  text-shadow: 2px 2px white;
}

#calendar-table td {
  font-size: 14px;
  color: white;
  text-shadow: 2px 2px red;
}

.today {
  background-color: rgba(255, 0, 255, 0.3);
  border: 2px outset #ff00ff !important;
  font-weight: bold;
}

#song-cover {
  width: 250px;
  height: 250px;
  margin: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("assets/images/default-song-cover.jpg");
  border: 2px outset palevioletred;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

#song-cover strong {
  padding-bottom: 20px;
}

footer {
  background-color: #222;
  border-top: 4px ridge peru;
  text-align: center;
  padding: 10px;
  font-size: 12px;
}

.button-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}

.button-column p {
  text-shadow: 2px 2px red;
  text-decoration-line: underline;
}

.button-column img {
  border: 1px solid black;
}

.last-updated {
  color: silver;
  margin: 4px 0 0;
}