/* ========================================
   PLANET WILSH
   ======================================== */


/* ========================================
   WELCOME PAGE
   index.html
   ======================================== */

.welcome-page {
  margin: 0;
  padding-top: 120px;

  background-color: black;
  color: white;

  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;

  text-align: center;
}


/* ========================================
   SHARED WELCOME + HOME
   ======================================== */

/* PLANET WILSH */

.welcome-page h1,
.home-page h1 {
  margin: 0 0 40px 0;

  font-size: 48px;
  font-weight: normal;
  letter-spacing: 8px;
}


/* MAKE ONLY "PLANET" COMIC SANS */

.planet-title {
  font-family: "Comic Sans MS", "Comic Sans", cursive;
}


/* EARTH */

.welcome-gif,
.home-gif {
  display: block;

  width: 200px;
  height: auto;

  margin: 0 auto 55px auto;

  transform: translateY(10px);
}

/* ========================================
   WELCOME PAGE ONLY
   ======================================== */

/* NOTE FROM WILSH */

.sticky-note {
  position: absolute;

  top: 300px;
  left: 20%;

  width: 320px;
  max-width: 30%;
  height: auto;

  transform: rotate(-8deg);
}


/* ENTER */

.enter-button {
  display: inline-block;

  padding: 12px 35px;

  background-color: black;
  color: white;

  border: 5px solid white;

  font-size: 28px;
  font-weight: normal;
  letter-spacing: 4px;

  text-decoration: none;
}


/* ENTER HOVER */

.enter-button:hover {
  background-color: white;
  color: black;

  border: 5px solid white;
}


/* ========================================
   HOME PAGE
   home.html
   ======================================== */

.home-page {
  margin: 0;
  padding-top: 120px;

  background-color: black;
  color: white;

  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;

  text-align: center;
}


/* HOME CONTENT AREA */

.home-layout {
  position: relative;

  width: 850px;
  max-width: 95%;

  margin: 0 auto;
}


/* LINKS ON LEFT */

.home-links {
  position: absolute;

  width: 220px;
  height: 260px;

  top: 0;
  left: 0;
}

.home-links a {
  position: absolute;

  width: 220px;

  color: white;

  font-size: 16px;
  text-align: right;
  text-decoration: none;

  transition: font-size 0.15s, color 0.15s;
}

.home-links a:hover {
  color: yellow;
  font-size: 28px;
}


/* CURVED LINK POSITIONS */

.link-1 {
  top: 0;
  left: 30px;
}

.link-2 {
  top: 50px;
  left: 0;
}

.link-3 {
  top: 105px;
  left: -15px;
}

.link-4 {
  top: 160px;
  left: 0;
}

.link-5 {
  top: 210px;
  left: 30px;
}


/* INTRO TEXT ON RIGHT */

.home-text {
  position: absolute;

  width: 260px;

  top: 5px;
  right: 20px;

  font-size: 16px;
  line-height: 1.6;

  text-align: left;
}


/* ========================================
   BLOG PAGE
   blog.html
   ======================================== */

.blog-page {
  background: lavender;
  color: black;

  font-family: Arial, Helvetica, sans-serif;

  max-width: 700px;
  margin: 60px auto;
  padding: 20px;

  line-height: 1.6;
}


/* ========================================
   BLOG WRITING
   ======================================== */

.blog-writing {
  white-space: pre-wrap;
  line-height: 1.6;
}


/* ========================================
   INDIVIDUAL BLOG POSTS
   ======================================== */

.blog-post-page {
  background: lavender;
  color: black;

  font-family: Arial, Helvetica, sans-serif;

  max-width: 700px;
  margin: 60px auto;
  padding: 20px;

  line-height: 1.6;
}

/* ========================================
   BLOG IMAGES
   ======================================== */

.blog-image {
  display: block;

  max-width: 100%;
  height: auto;

  margin: 25px auto;
}


/* ========================================
   ABOUT PAGE
   about.html
   ======================================== */

.about-page {
  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.5)
    ),
    url("https://planetwilsh.neocities.org/apes.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;

  color: white;

  font-family: Arial, Helvetica, sans-serif;

  max-width: 700px;
  margin: 60px auto;
  padding: 20px;

  line-height: 1.6;

  text-shadow:
    2px 2px 0 black,
    -1px -1px 0 black,
    1px -1px 0 black,
    -1px 1px 0 black;
}

.about-page a {
  color: yellow;
}

.about-page a:visited {
  color: yellow;
}



/* ========================================
   THINGS I MADE PAGE
   things.html
   ======================================== */

.things-page {
  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.5)
    ),
    url("https://planetwilsh.neocities.org/made/Storage.jpg");

  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;

  color: black;

  font-family: Arial, Helvetica, sans-serif;

  max-width: 700px;
  margin: 60px auto;
  padding: 20px;

  line-height: 1.6;
}

/* TEXT SITTING DIRECTLY ON THINGS PAGE BACKGROUND */

.things-page > h1,
.things-page > p,
.things-page > ul {
  color: white;

  text-shadow:
    2px 2px 0 black,
    -1px -1px 0 black,
    1px -1px 0 black,
    -1px 1px 0 black;
}

.things-page > p a,
.things-page > ul a {
  color: yellow;
}

.things-page > p a:visited,
.things-page > ul a:visited {
  color: yellow;
}

/* ========================================
   THINGS I MADE - INDIVIDUAL SECTIONS
   ======================================== */

.made-section {
  margin-top: 80px;
  margin-bottom: 100px;
  padding: 50px;

  box-sizing: border-box;
}

/* ========================================
   HAND WALKING
   things.html
   ======================================== */

.hand-walking {
  width: 600px;
  max-width: 85vw;

  margin: 80px auto;
  padding: 35px;

  background: white;
  color: black;

  box-sizing: border-box;
}

.hand-walking h2 {
  margin-top: 0;

  font-size: 26px;
  font-weight: normal;
}

.hand-walking p {
  line-height: 1.6;
}

.hand-walking a {
  color: blue;
}

.hand-walking a:visited {
  color: purple;
}

.hand-walking-video {
  margin-top: 30px;
}

.hand-walking-video iframe {
  display: block;

  width: 100%;
  max-width: 560px;
  aspect-ratio: 16 / 9;
  height: auto;

  margin: 0 auto;

  border: 0;
}


/* ========================================
   RETRO TV SETUP
   things.html
   ======================================== */

.retro-tv {
  width: 850px;
  max-width: 90vw;

  margin: 100px auto;
  padding: 60px;

  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.35),
      rgba(0, 0, 0, 0.35)
    ),
    url("https://planetwilsh.neocities.org/made/RetroTV.jpg");

  background-size: contain;
background-position: center top;
background-repeat: no-repeat;

  color: white;

  box-sizing: border-box;

  text-shadow:
    2px 2px 0 black,
    -1px -1px 0 black,
    1px -1px 0 black,
    -1px 1px 0 black;
}


/* TITLE */

.retro-tv h2 {
  margin-top: 0;

  font-family: "Courier New", Courier, monospace;
  font-size: 34px;
  font-weight: bold;

  letter-spacing: 3px;
}


/* TEXT */

.retro-tv p {
  max-width: 560px;

  line-height: 1.6;
}


/* ========================================
   WILDCARD CHARLIES
   ======================================== */

.wildcard-charlies {
  position: relative;

  background-image: url("https://planetwilsh.neocities.org/made/wcbackground.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: white;

  min-height: 900px;

  overflow: hidden;

  text-shadow:
    2px 2px 0 black,
    -1px -1px 0 black,
    1px -1px 0 black,
    -1px 1px 0 black;
}


/* SECTION TITLE */

.wildcard-charlies h2 {
  margin-top: 0;

  font-size: 32px;
  font-weight: normal;
}


/* BAND DESCRIPTION */

.wc-text {
  position: relative;
  z-index: 2;

  max-width: 520px;

  line-height: 1.6;
}


/* PHOTOS */

.wc-photos {
  position: relative;

  height: 320px;

  margin-top: 30px;
}

.wc-photo {
  position: absolute;

  width: 280px;
  height: auto;

  background: white;

  border: 12px solid white;
  border-bottom-width: 35px;

  box-sizing: border-box;
}

.wc-photo-1 {
  top: 10px;
  left: 20px;

  transform: rotate(-5deg);
}

.wc-photo-2 {
  top: 25px;
  left: 300px;

  transform: rotate(6deg);
}


/* BANDCAMP PLAYER */

.wc-bandcamp {
  position: relative;
  z-index: 2;

  max-width: 700px;

  margin-top: 40px;
}

/* ========================================
   DBZ AMV
   things.html
   ======================================== */

.dbz-amv {
  width: 600px;
  max-width: 85vw;

  margin: 80px auto;
  padding: 35px;

  background: lavender;
  color: black;

  box-sizing: border-box;
}

.dbz-amv h2 {
  margin-top: 0;

  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 26px;
  font-weight: normal;
}

.dbz-amv p {
  line-height: 1.6;
}

.dbz-amv-video {
  margin-top: 30px;
}

.dbz-amv-video iframe {
  display: block;

  width: 100%;
  max-width: 560px;
  aspect-ratio: 16 / 9;
  height: auto;

  margin: 0 auto;

  border: 0;
}

/* ========================================
   BEARLY ALIVE
   things.html
   ======================================== */

.bearly-alive {
  position: relative;

  width: 900px;
  max-width: 90vw;

  margin-top: 100px;
  margin-bottom: 100px;
  margin-left: 50%;
  padding: 55px;

  transform: translateX(-50%);

  background-color: black;
  color: #8b0000;

  text-align: center;

  border: 6px solid #7c0000;

  box-sizing: border-box;
  overflow: hidden;
}



/* INTRO */

.bearly-intro {
  max-width: 750px;

  margin: 0 auto 30px auto;

  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 30px;
  font-weight: normal;
  letter-spacing: 1px;

  text-transform: uppercase;
}


/* DESCRIPTION */

.bearly-copy {
  max-width: 700px;

  margin: 0 auto 45px auto;

  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.6;

  text-align: left;
}


/* VIDEO */

.bearly-video {
  margin: 30px auto 50px auto;
}

.bearly-video iframe {
  display: block;

  width: 700px;
  max-width: 100%;
  height: 394px;

  margin: 0 auto;

  border: 5px solid #7c0000;
}


/* DOWNLOAD AREA */

.bearly-download {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 18px;

  margin-top: 45px;
}


/* BEAR GIFS */

.bear-download-gif {
  width: 80px;
  height: auto;
}


/* DOWNLOAD LINK */

.bearly-download-button {
  display: inline-block;

  color: #8b0000;

  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 28px;
  font-weight: normal;
  letter-spacing: 2px;

  text-decoration: none;

  border-bottom: 3px solid #8b0000;

  padding-bottom: 3px;
}

.bearly-download-button:hover {
  color: #cc0000;
  border-bottom-color: black;
}

/* ========================================
   GOOD SALSA
   things.html
   ======================================== */

.good-salsa {
  width: 800px;
  max-width: 90vw;

  margin: 100px auto;
  padding: 60px;

  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.35),
      rgba(0, 0, 0, 0.35)
    ),
    url("https://i.ibb.co/84g1LHD7/IMG-3898.webp");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  box-sizing: border-box;
}


/* RECIPE TEXT */

.salsa-recipe {
  width: 550px;
  max-width: 100%;

  color: white;

  text-shadow:
    2px 2px 0 black,
    -1px -1px 0 black,
    1px -1px 0 black,
    -1px 1px 0 black;
}


/* GOOD SALSA TITLE */

.salsa-recipe h2 {
  margin-top: 0;
  margin-bottom: 30px;

  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 58px;
  font-weight: normal;

  letter-spacing: 2px;

  text-shadow:
    3px 3px 0 black,
    -1px -1px 0 black,
    1px -1px 0 black,
    -1px 1px 0 black;
}


/* INGREDIENTS / INSTRUCTIONS */

.salsa-recipe h3 {
  margin-top: 30px;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}


/* LISTS */

.salsa-recipe ul,
.salsa-recipe ol {
  padding-left: 25px;
}

.salsa-recipe li {
  margin-bottom: 8px;
  line-height: 1.5;
}

/* ========================================
   TALKING CROPS / AGFAX
   things.html
   ======================================== */

.talking-crops {
  position: relative;

  width: 1400px;
  max-width: 95vw;

  margin-top: 100px;
  margin-bottom: 100px;
  margin-left: 50%;
  padding: 55px;

  transform: translateX(-50%);

  background-image: url("https://planetwilsh.neocities.org/made/wheat%20photo.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: white;

  box-sizing: border-box;
}


/* TITLE */

.talking-crops h2 {
  margin-top: 0;

  font-size: 32px;
  font-weight: normal;

  text-align: center;

  text-shadow:
    2px 2px 0 black,
    -1px -1px 0 black,
    1px -1px 0 black,
    -1px 1px 0 black;
}


/* TEXT */

.talking-crops-text {
  max-width: 1050px;

  margin: 0 auto 45px auto;

  line-height: 1.6;

  text-shadow:
    2px 2px 0 black,
    -1px -1px 0 black,
    1px -1px 0 black,
    -1px 1px 0 black;
}


/* SOUNDCLOUD PLAYER */

.talking-crops-player {
  max-width: 1050px;

  margin: 0 auto;
}


/* SMALL SOUNDCLOUD CREDIT */

.talking-crops-credit {
  margin-top: 5px;

  font-size: 10px;

  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.talking-crops-credit a {
  color: white;
  text-decoration: none;
}

.talking-crops-credit a:hover {
  text-decoration: underline;
}

/* ========================================
   THESE GIFS
   things.html
   ======================================== */

.these-gifs {
  width: 750px;
  max-width: 90vw;

  margin: 80px auto;
  padding: 35px;

  background: pink;
  color: magenta;

  box-sizing: border-box;

  text-align: center;
}

.these-gifs h2 {
  margin-top: 0;
  margin-bottom: 30px;

  font-size: 28px;
  font-weight: normal;
}

.gif-row {
  display: flex;

  justify-content: center;
  align-items: center;

  gap: 30px;
}

.gif-row img {
  max-width: 200px;
  height: auto;
}

/* ========================================
   VERY IMPORTANT THINGS PAGE
   important.html
   ======================================== */

.important-page {
  background-image: url("https://planetwilsh.neocities.org/Rugbackground.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;

  color: white;

  font-family: Arial, Helvetica, sans-serif;

  max-width: 700px;
  margin: 60px auto;
  padding: 20px;

  line-height: 1.6;

  text-shadow:
    2px 2px 0 black,
    -1px -1px 0 black,
    1px -1px 0 black,
    -1px 1px 0 black;
}

.important-chaos {
  position: relative;
  width: 100%;
  min-height: 4800px;
}


/* GOLD BORDERS ON ALL IMAGES AND VIDEOS */

.important-chaos img,
.important-chaos iframe {
  border: 6px solid gold;
  box-sizing: border-box;
}


/* ========================================
   GUESTBOOK PAGE
   guestbook.html
   ======================================== */

.guestbook-page {
  background-image: url("https://planetwilsh.neocities.org/Guest-background.jpg");

  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;

  color: white;

  font-family: Arial, Helvetica, sans-serif;

  max-width: 700px;
  margin: 60px auto;
  padding: 20px;

  line-height: 1.6;

  text-shadow:
    2px 2px 0 black,
    -1px -1px 0 black,
    1px -1px 0 black,
    -1px 1px 0 black;
}


/* ATABOOK GUESTBOOK */

.guestbook {
  display: block;

  width: 100%;
  height: 700px;

  border: none;

  margin: 30px auto 0 auto;
}


/* LINKS */

.guestbook-page a {
  color: yellow;
}

.guestbook-page a:visited {
  color: yellow;
}