/* 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;
}

@font-face {
    font-family: milkyway;
    src: url(/assests/fonts/Milkyway\ DEMO.ttf);
}

#s-m-t-tooltip {
  max-width:400px;
  background-color: #333;
  border-radius: 0px; /* you can add in a border radius here for curved corners if you like */
  padding:4px; /* space around the text */
  margin:25px 10px 5px 0px; /* positioning of your hover info in relation to the link */
  color:#333; /* text color */
  border: 3px double #fff; /* optional border and border color */
  text-align: center;
  text-transform: uppercase;
  font-size:10px; /* font size of your hover info */
  letter-spacing:2px; /* optional letter spacing */
  background: #f49dff; /* change the background color of your hover info */
  z-index:99999;
}

body {
    background-color:#efefef; /* EDIT ME! CHanges bg color of entire page */
    color: #333; /* EDIT ME! Changes text color of entire page */
    font-size: 11px;
}

hr {
    border: none;
    border-bottom: 1px solid #f49dff;
    margin: 5px 0px;
}

h3 {
    font-family: milkyway;
    font-weight: 500;
    font-size: 35px;
    text-align: center;
    color: #d981e5;
    text-shadow: 1px 2px #aa62b3;
    text-decoration: underline;
}

nav {
    background-color: #333; /* 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: #f49dff; /* EDIT ME! - colors the links in your page NOT in your nav or footer, assuming any are there*/
    text-decoration: none; /* get rid of this entire line if you want all links to have an underline*/
}

nav a {
    color: #f8c0ff; /* 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-header {
    max-width: 90vw;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    color: #333;
}

#gallery-chibi {
    flex: 1;
}

#gallery-chibi img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
}

#gallery-info {
    flex: 1;
    align-content: center;
    text-align: justify;
    margin-bottom: 10px;
}

#gallery-links {
    margin: 5px 0px;
}

#gallery-status {
    text-transform: uppercase;
}

#gallery-status b {
    color: #d981e5;
}
#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: 120px;
    height: 120px;
    object-fit: cover;
    cursor: pointer;
    margin: 10px;
    border: 1px #333 solid; /* EDIT ME - color of the border around each gallery image */
    outline: 3px solid #f49dff;
}

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

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: #f49dff; /* EDIT ME! - colors the links in your link area of the footer */
    text-decoration: none;
}

i {
    font-size: 14px;
}

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

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

#links a:hover {
    color:#d981e5; /* 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;
    }
}