/* Retro + welcoming style for Neocities site */

/* Page base */
body {
  font-family: "Verdana", "Tahoma", sans-serif;
  background: #000000; 
  color: #333;
  margin: 0;
  padding: 0;
  text-align: center;
  
}

/* Header */
/*header {
  background: linear-gradient(135deg, #ffb347, #ffcc33);
  color: #4a2c00;
  padding: 30px;
  border-bottom: 4px solid #e08a00;
  text-shadow: 1px 1px #fff;
}

header h1 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2.5em;
  margin: 0;
}

/* Navigation */
nav {
  margin: 25px 0;
}

nav a {
  display: inline-block;
  margin: 8px;
  padding: 10px 20px;
  text-decoration: none;
  color: #2c1500;
  background: #fff7cc;
  border: 2px solid #e0c066;
  border-radius: 12px;
  box-shadow: 2px 2px 0px #c9a23c;
  font-weight: bold;
  transition: all 0.2s ease-in-out;
}

nav a:hover {
  background: #ffe380;
  box-shadow: 3px 3px 0px #b8902e;
}
/* Navigation active (clicked/current page) */
.clicked {
  text-decoration: none;
  background: #ffe380;     /* highlight more */
  border-color: #cc9900;   /* stronger border */
  box-shadow: 3px 3px 0px #b8902e;
}


/* Main content */
main {
  padding: 20px;
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 20px;
  border: 3px solid #996633;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);

}
.hyde{
  background-image: url("https://i.pinimg.com/1200x/e5/b2/2c/e5b22c0be5234e53b2933beb350aaaef.jpg");
  background-size: contain;
}
.border{
  color: red;
  font-weight: bold;
  font-size: 20px;
  text-shadow: 2px 0 #fff, -2px 0 #fff, 0 2px #fff, 0 -2px #fff, 1px 1px #fff, -1px -1px #fff, 1px -1px #fff, -1px 1px #fff;
}
.homepage-flex{
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: flex-start;
  gap: 10px;
  padding: 10px;
  
}
.homepage-flex > div {         
  border: 2px solid #996633;
  border-radius: 3px;
}
.gif-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#journal {
  max-width: 700px;
  margin: 2rem auto;
  padding: 1rem;
}

#journal h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #fff;
  text-shadow: 1px 1px #fff;
}

.journal-entry {
  background: transparent;
  border: 5px solid #996633;
  border-radius: 10px;
  margin: 1rem 0;
  padding: 1rem;
  max-height: 200px;
  overflow-y: auto;
  text-align: left;
}

.journal-entry::-webkit-scrollbar {
  width: 12px;                /* width of the scrollbar */
  border-radius: 10px;
}

.journal-entry::-webkit-scrollbar-track {
  background: transparent;        /* background of the scrollbar track */
  border-radius: 10px;
}

.journal-entry::-webkit-scrollbar-thumb {
  background-color: transparent;  /* color of the scrollbar thumb */
  border-radius: 10px;        /* makes it rounded */
  border: 3px solid #ffeede;  /* optional: adds padding around thumb */
}

/* For Firefox */
.journal-entry {
  scrollbar-width: thin;      /* thin scrollbar */
  scrollbar-color: #cc9966 #ffeede; /* thumb color + track color */
}


.journal-entry time {
  font-size: 0.9rem;
  font-weight: bold;
  color: #996633;
  display: block;
  margin-bottom: 0.5rem;
}

.journal-entry img {
  display: block;     
  margin: 0.5rem 0;   
  border-radius: 5px;
  max-width: 150px;     
  max-height: 150px;
  object-fit: cover;
  float: left;          
  margin-right: 1rem; 
  border-style: dashed;
  border-color: #996633;
}





/* Footer */
/*footer {
  margin-top: 40px;
  padding: 10px;
  background: #ffcc66;
  border-top: 3px solid #d8a02c;
  font-size: 0.9em;
  color: #4a2c00;
}
