/* ---- Grundsätzlicher Seitenaufbau ----*/

::-webkit-scrollbar { 
    display: none; 
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #f2f2f2;
  transition: all 0.3s;
}

#Header {
  background-color: #202020;
  padding-left: 10%;
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
}

#Header h1 {
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: white;
  margin-right: 1rem;
  line-height: 1.5;
}

#Header p {
  color: rgba(255,255,255,0.4);
  font-size: 1rem;
  line-height: 1.5;
}

#canvasWrap {
  min-height: 80vh;
  display: flex;
  vertical-align: middle;
  align-content: space-between;
  flex-wrap: wrap;
  justify-content: start;
}

#canvasInnerWrap {
  width: 100%;
  display: block;
}

#c {
  display: block;
  margin: auto;
  max-width: 80%;
  max-height: 60vh;
  margin-top: 60px;
  box-sizing: border-box;
  /*box-shadow: 0 0 100px 0 rgba(0,0,0,0.4);*/
  box-shadow: 0 20px 80px rgba(0,0,0,0.19), 0 12px 24px rgba(0,0,0,0.23);
}

#cTitel {
  margin-top: 2rem;
  margin-bottom: 2rem;
  text-align: left;
  font-weight: 600;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

#Settings {
  text-align: left;
  padding: 10px;
  margin: 0 auto;
  margin-bottom: 20px;
  margin-top: 20px;
  border-radius: 10px;
  /*box-shadow: 0 0 100px 0 rgba(0,0,0,0.2);*/
  font-size: 0.8rem;
  color: rgba(0,0,0,0.4);
}

#Settings input {
  margin-bottom: 10px;
  margin-right: 10px;
  margin-left: 10px;
}

#Settings .slider {
  display: none;
}

#myimage {
  display: none;
}

#palette {
  display: flex;
  justify-content: start;
  margin-left: -10px;
}

.paletteItem {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.19), 0 1px 2px rgba(0,0,0,0.23);
  display: block;
  margin: 10px;
  cursor: pointer;
  transition: all 0.3s;
}
.paletteItem:hover {
  transform: scale(1.2);
}

#galleryWrap {
  width: 100%;
  margin-top: 100px;
  margin-bottom: 100px;
}

#gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, 250px);
  justify-content: space-evenly;
  grid-gap: 35px;
  margin-left: 10%;
  margin-right: 10%;
}

.galleryItem {
  display: block;
  max-width: 250px;
  cursor: pointer;
}
.galleryItem div {
  overflow: hidden;
  position: relative;
  display: block;
  max-height: 250px;
  box-shadow: 5px 5px 20px 0px #939393, -0px -0px 20px 0px #FFFFFF;
}
.galleryItem div::after {
  box-shadow: inset 3px 3px 3px 0px #ebebeb, inset -3px -3px 3px 0px rgb(163, 163, 163);
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}

.galleryItem img {
  width: 100%;
  filter: grayscale(1) brightness(0.5) contrast(1.4) invert(1);
  transition: transform 0.3s;
  display: block;
  will-change: transform;
}
.galleryItem:hover img {
  transform: scale(1.3);
}

.galleryItem p {
  text-align: left;
  font-weight: 600;
  font-size: 0.8rem;
  margin-top: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}


@media screen and (max-width:800px) {
  body canvas {
    display: block;
    /*margin: 0;*/
    max-width: 80%;
  }
}

