/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-image: url('/Images/bluebackground.jpg');
  background-size: cover;
  background-repeat: repeat;
  background-position: center;
  color: black;
  font-family: Verdana;
}

.artwall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-rows: 250px;
  gap: 8px;
}

.art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform-origin: center;
}

.art img:hover {
  transform: scale(1.5);
}

 /* WIP BELOW 4 INDEX EVERYTHING ABOVE MISC 4 EOART */
 
.maincontainer {
  display: flex;
  justify-content: space-between;
  align-items: flexstart ;
  gap: 0.5em;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.grid-1 {
 display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  flex: 2;
  min-width: 0;
}

.grid-2 {
 display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 8px;
  flex: 1.5;
  min-width: 0;
}


/* ^^^ FUcky wucky grid 2 shenanigans */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  flex: 0.5;
  min-width: 0;
}

.benice {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}



