

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

body {
    background-image: url("https://i.imgur.com/THVk0to.png");
    background-attachment:fixed;
    background-size:cover;
    font-family: 'TheGoodMonolith', sans-serif;
}

nav {
    background-color: rgba(46, 32, 66, .7);
    border: 10px ridge rgba(137, 99, 191, 1.0);
    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: lightcoral; /* 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: lightcoral; /* EDIT ME! - colors the links in your navbar*/
    text-decoration: none;
    margin: 0;
    font-size: 1.25em;
}

main {
    padding: 4rem;
    min-height: 100vh; /* 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: 80vw;
    margin: 0 auto;
    text-align: center;
}

#gallery p, #gallery h3, #gallery h2 {
    margin: 1.25rem auto;
    color: rgba(224, 213, 88, 1.0);
}

#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: 8px ridge rgba(224, 213, 88, 1.0);
}

footer {
    width: 100%;
    background-color: rgba(46, 32, 66, .7);
    border: 10px ridge rgba(137, 99, 191, 1.0);
    padding: 2rem 4rem;
    margin: 0 auto;
    color: rgba(224, 213, 88, 1.0);
}

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

c {
  font-size:12px;
  
}

.column {
    display: flex;
    flex-direction: column;
    align-items: center;
}


#about * {
    padding: 0.25rem;
}

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

#links a {
    padding-right: 1rem;
    text-decoration: none;
    color: rgba(248, 113, 136, 1.0);
}


a:hover {
  text-shadow: 0px 0px 2px rgba(176, 108, 240);
  text-align: left;
  }

nav a:hover {
    text-shadow: 0px 0px 2px rgba(176, 108, 240);
    text-align: left;
}

#links a:hover {
    text-shadow: 0px 0px 2px rgba(176, 108, 240);
    text-align: left;
}

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



.tooltip {
position: relative;
display: inline-block;
}

/* buttobns big */
.button img {
  width: 140px;
  height: 51px;
  transition: 0.3s ease-in-out;
}

.button:hover img {
transform: scale(1.02);
transition: 0.3s ease-in-out;
}

.button:active img{
transform: scale(0.95);
}
}