/* General Page Styling */
body {
    background-color: black;
    color: limegreen;
    font-family: "Courier New", monospace;
    text-align: center;
    padding-top: 50px;
    overflow: scroll; /* Prevents scrollbar from stars */
}

.normtxt {
  background-color: black;
  color: white;
  font-family: "Courier New", monospace;
  text-align: left;
  padding-left: 10%;
  padding-right: 10%;
  overflow: hidden;
}

/* Reapply styles after reset */
.normtxt .code-scope .highlight {
  background-color: #1e1e1e;
  padding: 1em;
  border-radius: 6px;
  overflow-x: auto;
  font-family: monospace;
  display: block;
  white-space: pre;
  line-height: 1.4;
}

.normtxt code {
  /* background-color: #2d2d2d; */
  color: #f8f8f2;
  font-family: monospace;
  font-size: 0.95em;
  padding: 0.15em 0.4em;
  border-radius: 4px;
  /* white-space: nowrap; */
}

.center_pic {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 1rem;
    box-sizing: border-box;
}

.center_pic img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

a {
  color: #00ffff; /* bright cyan */
  text-decoration: none; /* optional: removes underline */
}

a:hover {
  color: #ffffff; /* changes to white on hover */
  text-decoration: underline; /* optional hover effect */
}

/* Fortune Cookie Icon */
.cookie {
    font-size: 50px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}
.cookie:hover {
    transform: scale(1.1);
}

/* Pop-up Style */
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: black;
    border: 2px solid limegreen;
    padding: 20px;
    width: 300px;
    box-shadow: 0px 0px 10px limegreen;
}
.popup button {
    margin-top: 10px;
    background: limegreen;
    color: black;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}

/* Star Animation */
.star {
    position: absolute;
    width: 3px;
    height: 3px;
    background-color: white;
    opacity: 0.8;
    border-radius: 50%;
    animation: fall linear infinite;
}

html .sakana-box{
  position: fixed;
  right: 0;
  bottom: 0;
  transform-origin: 100% 100%;
}

@keyframes fall {
    0% { transform: translateY(0px); opacity: 1; }
    100% { transform: translateY(100vh); opacity: 0; }
}

