:root {
  --radius: 10px;
  --box-width: min(70%, 90vw);
  --box-height: 55vh;
  --side-width: 10vw;
  --bgreen: #7bb279;
  --btan: #475f2a;
  --lyellow: #d1e5a6
}

body {
  color: black;
  font-family: Verdana;
  margin: 0;
  background-image: url("https://wowitsalison.neocities.org/images/background2.avif");
  background-size: cover;
  background-attachment: fixed;
  overflow-x: hidden;

  cursor: url(https://wowitsalison.neocities.org/images/mouse.gif), auto;
}

@font-face { 
  font-family: 'FISHFONT'; 
  src: url('fonts/FISHFONT.ttf'); 
  font-weight: normal; 
  font-style: normal; 
} 

@font-face { 
  font-family: 'THIN'; 
  src: url('fonts/thin.otf'); 
  font-weight:lighter; 
  font-style:italic;
}

@font-face { 
  font-family: 'NORMAL'; 
  src: url('fonts/thin.otf'); 
  font-weight:normal; 
  font-style:normal;
}

h1 {
  font-family: 'FISHFONT', sans-serif;
  font-size: clamp(35px, 5vw, 100PX);
  color: #09110a;
  text-align: center;
  margin: 20px 0;
  text-shadow: 
    0 0 5px #fff, 
    0 0 10px var(--lyellow), 
    0 0 20px var(--lyellow), 
    0 0 40px var(--lyellow);
}

h2 {
  font-family: 'NORMAL';
  font-style:normal;
  color: black;
  margin: 20px 0;
  text-shadow: 
    0 0 5px #fff, 
    0 0 10px var(--lyellow), 
    0 0 20px var(--lyellow), 
    0 0 40px var(--lyellow);
}

blog-date-font {
  font-family: 'THIN';
  font-size: clamp(15px, 5vw, 28px);
  color: var(--lyellow);
  text-shadow: 
    0 0 5px #fff, 
    0 0 10px var(--lyellow), 
    0 0 20px var(--lyellow), 
    0 0 40px var(--lyellow);
}

about-font {
  font-family: 'THIN';
  font-size: clamp(18px, 2.2vw, 30px);
  font-family: 'THIN';
  font-style: italic;
  letter-spacing: 2px;
  color: var(--lyellow);
  font-weight: 800;
  text-shadow: 
    0 0 5px #fff, 
    0 0 10px var(--lyellow), 
    0 0 20px var(--lyellow), 
    0 0 40px var(--lyellow);
}

.vignette {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none; /* Allows clicks to pass through to content */
  background: radial-gradient(circle, rgba(0,0,0,0) 50%, rgba(0,0,0,0.7) 100%);
  z-index: 9999; /* Keeps it on top of other content */
}

/* --- NAVBAR --- */

#blog-date {
  min-height: 25px;
  height: auto;
  background-color: #09150c;
  width: 8%;
  border-radius: var(--radius);
  justify-content: start;
}

#navbar {
  flex: start;
  min-height: 50px;
  height: auto;
  background-color: #09150c;
  border: outset gray 4px;
  border-radius: var(--radius);
  width: calc(100vw-8px);
  margin: 0 auto 15px;
  box-shadow: 0 10px 40px 10px rgba(0, 0, 0, 0.8), 
              inset 0 0 20px rgba(0, 0, 0, 0.9);
}

#navbar ul {
  display: flex;
  padding: 5px;
  margin: 0;
  list-style-type: none;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 15px;

  font-size: clamp(18px, 2.2vw, 30px);
  font-family: 'THIN';
  font-style: italic;
  letter-spacing: 2px;
  text-shadow: 
    0 0 5px #fff, 
    0 0 10px var(--lyellow), 
    0 0 20px var(--lyellow), 
    0 0 40px var(--lyellow);
}

#navbar li {
  padding-top: 5px;
}

#navbar li a {
  color: var(--lyellow);
  font-weight: 800;
  text-decoration: none;
}

#navbar li a:hover {
  color: #eed9f2;
}


/* --- MAIN CONTAINER --- */

#container {
  width: var(--box-width);
  height: var(--box-height);
  margin: 0 auto;
  border: outset gray 4px;
  border-radius: var(--radius);
  opacity: 0.80;
  box-shadow: 0 10px 40px 10px rgba(0, 0, 0, 0.8), 
              inset 0 0 20px rgba(0, 0, 0, 0.9);
}

#flex {
  display: flex;
  width: 100%;
}


/* --- SIDEBARS --- */

#leftSidebar,
#rightSidebar {
  flex: 0 0 180px;
  width: 180px;
  height: var(--box-height);
  padding: 10px;
  text-align: center;
  font-size: smaller;
  overflow: hidden;
}

#leftSidebar {
  order: 1;

  background-color: var(--bgreen);

  border-radius: var(--radius) 0 0 var(--radius);
  border: #c0c0c0 solid 0px;
}

#rightSidebar {
  order: 3;

  background-color: var(--bgreen);

  border-radius: 0 var(--radius) var(--radius) 0;
  border: 0px;
}


/* --- MAIN --- */

main {
  order: 2;

  flex: 1 1 auto;
  min-width: 0;

  padding: 10px;
  height: var(--box-height);
  overflow: hidden;
}

/* --- AD BOX ---*/
#ad-container {
  position: fixed;
  width: 10vw;
  height: 70vh;
  /*margin: 100 auto;*/
  border: outset gray 4px;
  border-radius: var(--radius);
  opacity: 0.80;
  box-shadow: 0 10px 40px 10px rgba(0, 0, 0, 0.8), 
              inset 0 0 20px rgba(0, 0, 0, 0.9);
  text-align: center;
  font-size: smaller;
  overflow: hidden;
}

/* --- BLOGS --- */
#blog-post {
  width: var(--box-width);
  margin: 0 auto;
  border: outset gray 4px;
  border-radius: var(--radius);
  background-color: var(--bgreen);
  padding: 10px;
  opacity: 0.80;
  box-shadow: 0 10px 40px 10px rgba(0, 0, 0, 0.8);
  margin-bottom: 20px;
}


/* --- SEAWEED --- */

.gif-line {
  display: flex;
  justify-content: center;
  gap: 0;

  position: absolute;
  bottom: 0;
  left: 0;

  width: 100%;
  overflow: hidden;

  pointer-events: none;
  /*z-index: 5;*/
}

.gif-line img {
  position: relative;
  height: 100px;
  display: block;
  float: left;
}


/* --- DECORATIONS --- */

.overlay-img {
  position: fixed;
  z-index: 10;
  max-width: 20vw;
  height: auto;
  /*pointer-events:none;*/
}
  


/* --- MOBILE --- */

@media (max-width: 800px) {
  :root {
    --box-height: auto;
  }

  body {
    padding: 5px;
  }

  #flex {
    flex-direction: column;
  }

  #leftSidebar,
  #rightSidebar,
  main {
    width: 100%;
    flex: none;
    min-height: 250px;
    box-sizing: border-box;
  }

  #leftSidebar {
    border-radius: var(--radius) var(--radius) 0 0;
  }

  #rightSidebar {
    border-radius: 0 0 var(--radius) var(--radius);
  }

  main {
    border-width: 0 1.5px;
  }

  .overlay-img {
    display: none;
  }

  .gif-line {
    /*position: static;*/
    bottom: 0px;
    width: 100%;
    height: 60px;
    overflow: hidden;
    display: flex;
  }

  .gif-line img {
    height: 60px;
    width: auto;
    flex-shrink: 0;
  }
}

/* --- COMMENTS --- */

#HCB_comment_box {
  box-sizing: border-box;
  width: 100%;
  padding: 10px;

  background-color: var(--bgreen);
  color: #211F24;

  font-family: 'THIN';
  font-size: 14px;
}

/* Comment form */
#HCB_comment_box form {
  margin: 0;
}

#HCB_comment_box textarea,
#HCB_comment_box input[type="text"] {
  box-sizing: border-box;
  padding: 6px;

  background-color: rgba(255, 255, 255, 0.8);
  color: #5E2C49;

  border: 1px solid #CE98FB;
  border-radius: 4px;

  font-family: 'THIN';
}

#HCB_comment_box textarea {
  width: 100%;
  resize: vertical;
}

/* Buttons */
#HCB_comment_box input[type="submit"],
#HCB_comment_box button {
  padding: 4px 8px;

  background-color: white;
  color: #CE98FB;

  border: 1px solid #CE98FB;
  border-radius: 5px;

  font-family: 'THIN';
  cursor: pointer;
}

#HCB_comment_box input[type="submit"]:hover,
#HCB_comment_box button:hover {
  background-color: #FB96D8;
  color: white;
  border-color: #FB96D8;
}

/* Individual comments */
#HCB_comment_box .hcb-comment {
  margin-top: 10px;
  padding: 10px;

  background-color: white;
  border: 1px dashed #CE98FB;
  border-radius: 4px;
}

/* Username */
#HCB_comment_box .author-name {
  font-weight: bold;
  color: #5E2C49;
}

/* Comment text */
#HCB_comment_box .comment {
  color: #5E2C49;
}

/* Links */
#HCB_comment_box a {
  color: #CE98FB;
}

#HCB_comment_box a:hover {
  color: #FB96D8;
}

/* --- HTMLCommentBox fixes --- */

/* --- HTMLCommentBox cleanup --- */

/* Keep inputs inside the box */
#HCB_comment_box input,
#HCB_comment_box textarea {
    box-sizing: border-box;
    max-width: 100%;
}

#HCB_comment_box input[type="text"] {
    width: 100%;
}

/* Hide the Add Image button in HTML Comment Box */
#HCB_comment_box a.btn.btn-secondary {
    display: none !important;
}

/* Hide RSS / feed link */
#HCB_comment_box a[href*="rss"],
#HCB_comment_box a[href*="feed"] {
    display: none !important;
}

/* Hide "Not using HTML comments yet?" */
#HCB_comment_box .home-desc {
    display: none !important;
}

/* --- BILLY ---*/
#billy {
  width: 75%;
  max-width: 90vw;
  cursor: pointer;
}
