:root {
  --dk-color: #70402f;   /* main text, dark slate gray */
  --dkest-color: #8b584b; /* accent text, muted violet */
  --accent: #7c2e1a; /* accent text, muted violet */
}


.padded {
  padding-left:30px;
  padding-right:30px;
  }

body {
     height:98%;
     font-family:Comic Sans MS;
     font-size:15px;
     background-position: top left;
     color:var(--dkest-color);
     background-image:url(https://www.fancyparts.com/fancyparts/cg/pattern/strip_06/strip_06_101.gif);
     cursor: url(https://cur.cursors-4u.net/food/foo-/foo507.ani), url(https://cur.cursors-4u.net/food/foo-6/foo507.png), auto !important;    
     padding-bottom:10px;
     }



 h1, h3, h5 {
     color:var(--dk-color);
     filter: drop-shadow(2px 2px 2px  rgba(10, 10, 12, 0.267))
}
 h2, h4, h6 {
     color:var(--accent);
     filter:drop-shadow(2px 2px 2px  rgba(10, 10, 12, 0.267));
}

p {
    filter:drop-shadow(2px 2px 2px rgba(10, 10, 12, 0.288))
}

a {
    color:var(--accent);
    filter:drop-shadow(2px 2px 2px rgba(10, 10, 12, 0.288))
}

img {  filter: drop-shadow(2px 2px rgba(10, 10, 12, 0.267));
}


.left{
  float:left;
}

  .text:hover{ 
font-style: italic;
text-decoration-line: underline;
}  

  
.downloads {
  display: flex;
justify-content: center;
  gap: 10px;
}

.download {
  
 border: 5px ridge #a85f42;
  background-image: linear-gradient(to top, #fff9f909 20%, #cf3a2600 80%, #882c155d 100%), url(retina_wood.png);
  color: #a85f42;
  cursor: pointer;
  padding:20px;
  height: 25px;
  min-width: 100px;
  font-size: 25px;
  font-weight:bold;
  text-decoration: none;
  font-size:20px;
  align-items:center;
  display: flex;        
  align-items: center;        
  justify-content: center;  
  font-family: Comic Sans MS;
  margin-block:10px;
}

.linkbutton {
 border: 5px ridge #a85f42;
  background-image: linear-gradient(to top, #fff9f909 20%, #cf3a2600 80%, #882c155d 100%), url(retina_wood.png);
  color: #a85f42;
  cursor: pointer;
  padding: 1rem;
  height: auto;
  text-align: center;
  outline: none;
  min-width: 500px;
  font-size: 25px;
  font-weight:bold;
  font-family: Comic Sans MS;
  margin-block:10px;
}

.linkbutton:hover {
 border: 5px ridge #a85f42;
  background-image: linear-gradient(to top, #fff9f909 20%, #cf3a2657 80%, #882c155d 100%), url(retina_wood.png);
}


    .dividing {
  border: 5px ridge #a85f42;
  background-image: linear-gradient(to top, #fff9f909 20%, #cf3a2600 80%, #882c155d 100%), url(retina_wood.png);
      color:rgb(102, 51, 35);
      font-size:20px;
    }

.container {
  display: grid;
  grid-template-columns: auto auto auto;
}

.container > div {
  font-size: 14px;
  text-align: center;
}

.grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: 1fr;
max-width:1000px;
grid-column-gap: 0px;
grid-row-gap: 0px;
}

.update-log {
  max-height: 200px; 
  max-width: 400px;
  overflow-y: auto;
  padding: 8px;
  border: 2px solid #ccc;
  background: #fff8f0; 
  font-family: "Comic Sans MS", cursive, sans-serif;
  font-size: 14px;
}

.update-log p {
  margin: 6px 0;
  display: flex;
  justify-content: space-between;
}

.update-log .date {
  color: #704b8f; 
  font-size: 0.85em;
}

.update-log {
  max-height: 110px;  
  max-width:300px;   
  overflow-y: auto;      
  padding: 8px;
  border: 2px solid #ccc;
  background: #fff8f0;
  font-family: "Comic Sans MS", cursive, sans-serif;
  font-size: 14px;
}

.update-log p {
  margin: 6px 0;
}

.update-log .date {
  color: #704b8f;
  font-weight: bold;
  margin-right: 6px;
}

/* ===== Scrollbar CSS ===== */
  /* Firefox */
  * {
    scrollbar-width: auto;
    scrollbar-color: #c66e58 #ffffff;
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 16px;
  }

  *::-webkit-scrollbar-track {
    background: #ffffff;
  }

  *::-webkit-scrollbar-thumb {
    background-color: #c66e58;
    border-radius: 10px;
    border: 3px solid #ffffff;
  }