@font-face {
    font-family: Heffaklump;
    src: url(https://gildedware.neocities.org/pageassets/font/Heffaklump.ttf);
}




:root {
  /* These variables exist so you can make quick and simple style changes without much CSS knowledge */
  
  /* applies to all areas */
  --font-family: sans-serif;
  --font-size:12px;
  --line-height:1.3em;
  --font-color:#000;
  --link-text-decoration:none;
  
  /* main content (between sidebars) */
  --content-padding:25px;
  --content-bg-color:#fff;
  
  
  
  /* header */
  --header-height:0px;
  --header-background: url('');
  --header-margin-bottom:0px;
  
  /* sidebar */
  --sidebar-margin:0px;
  --sidebar-width:200px;
  --sidebar-bg-color:#FFD026;
  
  /* footer */
  --footer-height:300px;
 
  /* navbar */ 
  --navitems-alignment: right;
  --space-between-navitems: 20px;
  --nav-bg-color: #FFCE00;
  
  /* container */
  --container-width:1500px;
  
  /* controls the gap between the content and the footer */
  --row-gap:5px;
  
  
  /* To add scrollbars to your sidebars, just make the height a px value and change overflow to 'auto' */
  --sidebar-height:auto;
    --sidebar-overflow:auto;
  --background-color:#000000;
     
}



html, body {
  margin:0;
  padding:0;
  background-image:url("https://gildedware.neocities.org/pageassets/stars5.gif");
  font-family:var(--font-family);
  font-size:15px;
  line-height:var(--line-height);
  color:var(--font-color);
  border: 3px solid;
}
body a {
  color:var(--link-color);
  font-weight:bold;
  text-decoration:var(--link-text-decoration);
}
h1 {
  font-family:Heffaklump, sans-serif;
  font-size:30px;
  line-height: 45px;
}
h1 a {
  color:black;
}
h2 {
  font-family:Heffaklump, sans-serif;
  font-size:70px;
  line-height: 40px;
}
h3 {
  font-family:Heffaklump, sans-serif;
  font-size:25px;
}

a:hover {
  text-decoration:underline;
}

#main-container {
  max-width:var(--container-width);
  margin:0 auto;
  background-color:var(--container-bg-color);
  border: 2px solid;
}
.flex {
  display:flex;
  margin-bottom:var(--row-gap);
}
.content-wrap {
  margin-top:var(--content-margin-top);
}
#content-container {
  width:50%;
  margin-bottom:var(--row-gap);
  background-color:var(--content-bg-color);
  padding-top:25px;
  border: 2px solid;
  
}
#left-sidebar {
  width:var(--sidebar-width);
  margin-right:var(--sidebar-margin);
  margin-bottom:var(--row-gap);
  height:var(--sidebar-height);
  overflow:var(--sidebar-overflow);
  background-color:var(--sidebar-bg-color);
}


#right-sidebar {
  width:var(--sidebar-width);
  margin-left:var(--sidebar-margin);
  margin-bottom:var(--row-gap);
  height:var(--sidebar-height);
  overflow:var(--sidebar-overflow);
  background-color:var(--sidebar-bg-color);
}
#header-contained {
  height:var(--header-height);
  margin-bottom:var(--header-margin-bottom);
  background-image:var(--header-background);
  background-position:center center;
}
#footer {
  height:var(--footer-height);
  text-align:center;
  color:var(--font-color);
  background-color:var(--footer-bg-color);
}
#header-full {
  display:none;
  height:var(--header-height);
  margin-bottom:var(--header-margin-bottom);
  background-image:var(--header-background);
  background-position:center center;
}
#navbar-contained {
   --navitems-alignment:center;
  --space-between-navitems:30px;
  --nav-bg-color:#F0CD14;
}

#navbar-full {
  display:none;
}


#link-title
  width:200px; /* this should match the image height */
  height:200px; /* this should match the image width */
  margin-left:25px;
  margin-right:25px; /* this controls the gaps between the images */
  margin-bottom:75px; /* this controls the gaps between the images */
}

/*Grid CSS*/

.grid-container {
  display: grid;
  grid-template-columns: 450px 450px;
  grid-template-rows: 450px 450px;
  grid-gap: 17px;
  background-color: #fff;
  padding: 10px;
}

.grid-container > div {
  background-color: rgba(255, 255, 255, 0.8);
  text-align: center;
  padding: 0px 0;
  font-size: 12px;
  border-style: inset;
}


.nav {
  margin-left:0;
  text-align:right;
  color: #000;
  margin-top:0;
  padding-right:1em;
  margin-bottom:var(--navbar-margin-bottom);
  padding-top:1em;
  padding-bottom:1em;
  background-color:var(--nav-bg-color);
  background-image: url(https://gildedware.neocities.org/works/yesterwebzine4/banner_bg.png);
  font-weight: bold;
}

.nav li {
   display: inline-block;
                padding-right: var(--space-between-navitems);
                font-size:35px;
                padding-left:1.2em;
                padding-right:1.2em;
                padding-bottom:0.3em;
              margin-bottom:0.3em;
}

.wrapper {
  padding:var(--content-padding);
  padding-top:var(--sidebar-padding);
}
.sidebar-wrapper {
  border-radius:0px 0px 15px 0px;
}
.footer-wrapper {
  padding:5px;
}

.wrapper a {
  color: blue;
}

.lookuptext{
  text-align: center;
}

.lookuptext a {
  color: blue;
}

.pets { /* this is the main div that wraps your gallery */
  display:flex;
  flex-wrap:wrap;
  width:auto; /* this can be modified to make the gallery wider */
  padding-top: 50px;
  text-align: center;
}

.pets img {
  width:150px; /* this sets the width for every image */
  height:150px; /* this sets the height for every image. Try setting it to 'auto' and see how it looks weird since every image has a slightly different height? */
  object-fit:cover; /* this crops the image so they are all the same size. This might be an issue if you have landscape AND portrait images. Feel free to take this property out temporarily to see exactly what it does! */
}

/* this is the div which CROPS every image */
.pets > div {
  width:150px; /* this should match the image height */
  height:150px; /* this should match the image width */
  margin-left:25px;
  margin-right:25px; /* this controls the gaps between the images */
  margin-bottom:75px; /* this controls the gaps between the images */
}

/* this resizes the image on hover. note that objects in 'portrait'  */
.pets img:hover {
  transform:scale(1); /* this scales up the image when you hover over it */
  object-fit:contain; /* this keeps the aspect ratio of the original images*/
}

#myImg {
  margin: 20px 0px;
  margin-left: 20px;
  cursor: pointer;
  transition: 0.3s;
  height: auto;
  width: auto;
  max-height:250px;
  vertical-align:middle;
}


#marker {
  margin: 5px 0px;
  height: auto;
  width: auto;
  max-height:200px;
  vertical-align:middle;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 10; /* Location of the box */
  left: 0;
  top: 0;
/*  transform: translate(-50%,-50%); */
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
  margin: auto;
  display: block;
  height: auto;
  width: auto;
  max-width: 90%;
  padding: 10px;
}

/* Caption of Modal Image */
#caption {
  margin: auto;
  display: block;
  width: 85%;
  max-width: 700px;
  text-align: center;
  color: white;
  padding: 18px;
}

/* The Close Button */
.close {
  position: absolute;
  top: 50px;
  right: 100px;
  color: #DBDEE1;
  font-size: 90px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #FFD026;
  text-decoration: none;
  cursor: pointer;
}



/* To keep your site RESPONSIVE, make sure this variable matches the width for --container-width UNLESS --container-width is 100% - if it's 100%, you'll need to manually input a breakpoint. */


    @media only screen and (max-width: 1000px) {
  .flex {
    flex-wrap:wrap;
  }
  #left-sidebar {
    width:100%;
    display:block;
    order:2;
    margin-right:0;
  }

  #right-sidebar {
    width:50%;
    display:block;
    order:3;
    margin-left:0;
  }
  #content-container {
    width:50%;
    display:block;
    order:1;
  }
     