:root {
  --main-bg-color: #898980;
  --second-bg-color: #f1f2ed;
  --text-color: #C2EABD;
  --three-bg: #f1f2ed;
  ;

}

@font-face {
  font-family: myFirstFont;
  src: url(/assets/font/retro_computer_personal_use.ttf);
}

* {

  color: var(--text-color);
  font-family: myFirstFont;
}

body {
  background-color: var(--three-bg);
  /* remove margins and scroll bars */
  margin: 0;
  overflow: hidden;


  /* style text */
  text-align: center;
  font-size: 12px;
  font-family: Sans-Serif;
  width: 100%;
  height: 100%;


  /* color text */
  color: #444;
}

h1 {
  /* position the heading */
  position: absolute;
  width: 100%;


  /* make sure that the heading is drawn on top */
  z-index: 1;
}

#scene-container {
  /* tell our scene container to take up the full page */
  position: absolute;
  float: left;
  width: 50%;
  height: 100%;

  /*
    Set the container's background color to the same as the scene's
    background to prevent flashing on load
  */
  background-color: var(--main-bg-color);
}

.tiles {
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

#gui {
  position: absolute;
  top: 2px;
  left: 2px;
  z-index: 10;


}

.lil-gui {

  --text-color: #C2EABD;

  --font-family: myFirstFont !important;
  --font-family-mono: myFirstFont !important;
  --background-color: #1f1f1f69;
  --slider-input-min-width: 64px;
  --color-input-min-width: 64px;
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
  border-radius: 0.4em;

}

.canvas-info {
  position: fixed;
  right: 35px;
  top: 220px;
  z-index: 5;
  text-align: left;
  font-size: 0.5em;
}

#myCanvas {
  width: 680px;
  height: 234px;

  background-color: var(--main-bg-color);

  position: fixed;
  right: 20px;
  top: 20px;
  border-radius: 2em;
  z-index: 4;
}

#myImages {
  width: 800px;
  height: 117px;
  background-color: var(--main-bg-color);
  position: fixed;
  right: 20px;
  top: 274px;
  border-radius: 2em;
  z-index: 4;
  margin: 0;
}

.flex-container {
  display: flex;
  padding: 1em;
  background-color: var(--main-bg-color);
  border-radius: 2em;
  flex-direction: row;
  align-items: center;
  margin: 0;
  padding: 0;
  height: 100%;

}

.flex-items {

  color: var(--text-color);
  flex-grow: 1;
  font-size: 3em;
  cursor: pointer;




}


#img-list {
  width: 800px;
  height: auto;
  background-color: var(--main-bg-color);
  position: fixed;
  display: flex;
  flex-wrap: wrap;
  right: 20px;
  top: 411px;
  border-radius: 2em;
  z-index: 4;

  margin: 0;
  justify-content: space-evenly;
}

.img-list-items-container {

  flex-basis: 10%;
  margin: 1em;
  height: 80px;
  border: 2.5px var(--second-bg-color) solid;
  border-radius: 1em;
  overflow: hidden;


}

.img-list-items {
  width: 100%;
  height: 80px;
  object-fit: cover;
  cursor: pointer;


}