/* DO YOU WANT TO EDIT THE COLORS?

THEN HIT CTRL+F (CMD+F ON MACS) OR WHATEVER KEYBINDING YOU HAVE TO OPEN YOUR FIND TOOL! THEN, TYPE THE BELOW:

EDIT ME!

ALL EDITABLE COLORS SHOULD LIGHT UP AND YOU CAN SEE WHAT YOU CAN CHANGE WITH HEX VALUES OR WEB-SAFE COLOR NAMES!

*/

* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
}

body {
    background-color: #131313;
    color: #cc5300;
    font-family: "New Rocker", system-ui;
  font-weight: 400;
  font-style: normal;
     cursor:url('https://autumn-omen.neocities.org/mouse.png'), auto;
 background-image: url('leavesseamless.png'); 
 background-repeat: repeat;
 background-attachment: fixed;
}



nav {
    background-color: #131313; /* EDIT ME! */
    text-align: center;
    width: 100%;
    position: sticky;
    top: 0;
}

nav ul li {
    list-style: none;
    display: inline-block;
    padding: 0.75rem 0.5rem;
    margin: 0;
}

a {
    color: #cc5300; /* EDIT ME! - colors the links in your page NOT in your nav or footer, assuming any are there*/
    
}

nav a {
    color: #cc5300; /* EDIT ME! - colors the links in your navbar*/
    text-decoration: none;
    margin: 0;
    font-size: 1.25em;
}

main {
    padding: 4rem;
    min-height: 80vh; /* EDIT ME if and ONLY if you don't have a lot in your about me -- you may need to up this to 90vh */
}

#gallery{
    max-width: 90vw;
    margin: 0 auto;
    text-align: center;
}

#gallery p, #gallery h3, #gallery h2 {
    margin: 1.25rem auto;
}

#hideshow{
   display:none; 
}

#featureimg {
    max-width: 100%;
}

/* changing the WIDTH and HEIGHT in the below will change how big your galelry item thumbnails appear. NOTE - due to styling, the 120 width has minus 10 pixels on either side due to margin; same to height.*/
#galleryItems img {
    width: 150px;
    height: 200px;
    object-fit: cover;
    cursor: pointer;
    margin: 10px;
    border: 3px #ffc887 solid; /* EDIT ME - color of the border around each gallery image */
    
}

footer {
    width: 100%;
    background-color:  #131313; /* EDIT ME! - background color of the footer (aka where your About Me and social links are!) */
    padding: 2rem 4rem;
    margin: 0 auto;
    color:  #cc5300; /* EDIT ME! - font color of the text within the footer */
}

footer ul li {
    list-style: none;
    display: inline-block;
}

#about * {
    padding: 0.25rem;
}

#links h2, #links h3 {
    padding: 1rem 0;
}

#links a {
    padding-right: 1rem;
    color:  #5ce15c; /* EDIT ME! - colors the links in your link area of the footer */
    text-decoration: none;
}

i {
    font-size: xx-large;
}

a:hover {
    color:#ffc887; /* EDIT ME! - will change the hover on all links within the body*/
}

nav a:hover {
    color:#ffc887; /* EDIT ME! - will change the hover on all links within the nav*/
}

#links a:hover {
    color:#ffc887; /* EDIT ME! - will change the hover on all links within the section with an id of links */
}

/* For large horizontal viewports, to reign in that gallery... */

@media screen and (min-width: 768px) 
{
    #gallery {
        max-width: 75vw;
    }

    #gallery p {
        max-width: 60%;
    }

    footer section {
       max-width: 75vw;
       margin: 0 auto;
    }
    
    /*NOT CODE just a point of ref where shit starts and stops*/ 
    
    .floating-doll {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 150px;
  z-index: 999;
}
}
  
  /*testing code goes here */  
    
#leaves {
  position: fixed;
  top: -50px;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

#leaves i {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: linear-gradient(to bottom right, #b22222, #ff8c00);
  transform: skew(20deg);
  border-radius: 5% 40% 70%;
  position: absolute;
  top: -10px;
  animation: falling 7s linear infinite;
}

#leaves i:nth-of-type(n) {
  width: 15px;
  height: 15px;
  animation-duration: 5s;
  animation-delay: 0s;
  left: 10%;
  background: #d2691e;
}

#leaves i:nth-of-type(2n) {
  width: 25px;
  height: 25px;
  animation-duration: 8s;
  animation-delay: 2s;
  left: 30%;
  background: #ff4500;
}

#leaves i:nth-of-type(3n) {
  width: 18px;
  height: 18px;
  animation-duration: 6s;
  animation-delay: 4s;
  left: 60%;
  background: #deb887;
}

#leaves i:nth-of-type(4n) {
  width: 22px;
  height: 22px;
  animation-duration: 9s;
  animation-delay: 1s;
  left: 80%;
  background: #8b4513;
}

@keyframes falling {
  0% {
    top: -10px;
    transform: translateX(0) rotate(0deg) skew(20deg);
    opacity: 1;
  }
  100% {
    top: 100vh;
    transform: translateX(150px) rotate(360deg) skew(20deg);
    opacity: 0.2;
  }
  /* more test code cause I literally don't know when this will work or if it'll work */
  
}


 
html {
  scrollbar-color: #cc5300 #ffc887; 
}



