html {
  font-family: "Inconsolata", sans-serif;
  color: #eeeeee;
}

body {
  width: 100vw;
  height: fit-content;
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  margin: auto;
  background-color: #000000;
  background-image: url("IMG/bettysgraphics-pattern542-static.jpg");
  background-origin: border-box;
  background-repeat: repeat;
}

/*body: i forgot my CSS edition
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height:100vh;
*/

/*CONTAINERS*/
#main-container {
  width: 75vw;
  max-width: 75vw;
  margin: auto;
  }

#header {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  padding: 20px 0;
  text-align: center;
  background-color: #000000;
  }
  
.img-sidebar-container {
  max-width: 200px;
  }

img {
  object-fit: contain;
  width: 100%;
}

#main-content {
  overflow-y: scroll;
  }

.welcomeblock {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 90%;
  gap: 20px;
  }

#blinkiewall {
  display: inline-block;
  max-width: 80%;
  text-align: center;
  }
  
#blinkiewall img  {
  width: 100px;
  max-width: 100px;
  }

.spacer80px {
  width: 100vw;
  height: 80px;
  }

footer {
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  }

/*GRID PROPERTIES*/

#grid-wrapper {
  display: grid;
  grid-template-rows: auto auto;
  gap: 1rem;
  box-sizing: border-box;
}

#grid-wrapper-single {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  box-sizing: border-box;
}

.grid-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px;
  box-sizing: border-box;
   height: auto;
  max-height: 858px;
  overflow-y: scroll;
  color: #eeeeee;
  background-color: #000000;
  border: 1px;
  border-color: #eeeeee;
  border-style: solid;
  }

.grid-item {
  width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  }

/*MEDIA QUERIES*/
@media (max-width: 800px){
  #grid-wrapper {
      grid-template-columns: 1fr;
    }
  
    #sidebar-left, #sidebar-right {
        display: none;
    }
    #main-content {
      max-width: 100%;
      }
    iframe {
      max-width: 100%;
      }
}

@media screen and (max-width: 1280px) and (min-width: 801px) {
    #grid-wrapper {
      grid-template-columns: 1fr 2fr;
    }
    #sidebar-right {
      display: none;
      }
}

@media (min-width: 1281px){
  #grid-wrapper {
      grid-template-columns: 1fr 2fr 1fr;
    }
}

/*DIVS*/

#nav {
  margin-top: 40px;
  width: 100%;
  height: 40px;
  border: 1px;
  border-color: #eeeeee;
  border-style: solid hidden solid hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  }

.sidebar-link {
  width: 80%;
  border: 1px;
  border-color: #eeeeee;
  border-style: hidden hidden solid hidden;
  text-align: center;  
  padding: 3px 0 3px 0;
  margin-top: -2px;
  }

.sidebar-link:hover {
  background-color: #eeeeee;
  }
  
.artgallery, .artgallery-medium {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  }

.artgallery {
    gap: 10px;
  }

.artgallery-medium {
    gap: 50px;
  }

.artgallery-card {
  padding: 10px;
  text-align: center;
  }

.artgallery img {
  max-width: 200px;
  }
  
.artgallery-medium img {
  max-width: 200px;
  max-height: 300px;
  }

.artgallery-large img {
  max-width: 400px;
  }


/*IMAGES*/
img {
    width:100%;
}


/*TEXT*/
h1 {
  font-family: "Faculty Glyphic";
  font-size: 3em;
  text-align: center;
  }

h2 {
  font-family: "Faculty Glyphic";
  font-size: 2em;
  text-align: center;
  }

.tinyhead {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05rem;
  background-color: #eeeeee;
  color: #111111;
  }

.tinytext {
  font-size: 12px;
  }

a {
  color: #eeeeee;
  }

.sidebar-link a {
  color: #eeeeee;
  text-decoration: none;
  }

.sidebar-link a:hover {
  color: #777777;
  }

#header a {
  color: #eeeeee;
  margin-left: 12px;
  margin-right: 12px;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  }

#header a:hover {
  color: #777777;
  background-color: #eeeeee;
  }
