/* 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:#FBFAF4; /* EDIT ME! CHanges bg color of entire page. This is the white. */
    color: #2D2A26; /* EDIT ME! Changes text color of entire page. This is the black. */
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
}

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

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

a {
    color: #FF6840; /* EDIT ME! - colors the links in your page NOT in your nav or footer, assuming any are there. This is the orange. */
    text-decoration: none; /* get rid of this entire line if you want all links to have an underline*/
}

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


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

/*SHOWREEL STYLING*/
    #showreel {
  max-width: 100%;
  margin: 0 auto;
}

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

#gallery p, #gallery h3, #gallery h2 {
    margin: 0 auto;
    text-align: center;
}

#hideshow {
   display:none;
   margin: 0 auto;
}

#featureimg {
    max-width: 100%;
    margin: 0 auto;
}

/* 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: 120px;
    height: 120px;
    object-fit: cover;
    cursor: pointer;
    margin: 10px;
    border: 3px #2D2A26 solid; /* EDIT ME - color of the border around each gallery image */
}

#galleryItems img:hover {
  opacity: 0.7;
}



/*ANIMATION STYLING*/
#animationitems {
    max-width: 100vw;
    margin: 0 auto;
    text-align: center;
    padding: 2em;
}

#animationitems iframe {
 margin: 0.5em;
}

#animationitems p, h3, h2 {
  margin: auto;
}


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

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

#about * {
    padding: 1rem 1rem;
    margin: 0 auto;
    max-width: 60vw;
}

#about img {
  float: right;
   border: 3px #2D2A26 solid; /* EDIT ME - color of the border around image */
   padding: 0;
   margin: 3px 3px 3px 3px;
}

#about a {
  padding: 0.5rem;
  border: 3px #FF6840 dotted;
}


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

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

i {
    font-size: xx-large;
}

a:hover {
     text-decoration: underline;
}

nav a:hover {
    text-decoration: underline;
}

#links a:hover {
     text-decoration: underline;
}

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

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

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

    footer section {
       max-width: 75vw;
       margin: 0 auto;
    }
    
    #about {
      max-width: 50vw; 
      margin: 0 auto;
    }
    
    #showreel {
  max-width: 60vw;
  margin: 0 auto;
}

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