@font-face {
  font-family: VT323-Regular;
  src: url(../fonts/VT323-Regular.ttf);
}

@font-face {
  font-family: Daydream;
  src: url("../fonts/Daydream.ttf");
}

body {
  font-family: VT323-Regular, "georgia", "courier new";
  margin: 0;
  font-size: 14pt;
  color: black;
  height: 100%;
}

* {
  box-sizing: border-box;
  text-align: center;
  margin: auto;
}

h1 {
  font-family: Daydream, "georgia", "courier new";
  font-weight: normal;
  font-size: 15pt;
  color: #ffd799;
  -webkit-text-stroke: 1px #e57cf7;
  text-shadow: 3px 2px #e6a3e8;
  margin: 10px;
  text-align: center;
}

canvas {
  overflow-y: auto;
  padding: 2px;
  cursor: crosshair;
  border: 20px solid transparent;
  border-radius: 10px;
  border-image: url(../images/orange-border1.png) 25 round;
  background-color: #ffd799;
}

#drawboxcanvas {
  display: flex;
  align-items: center;
  justify-content: center;
}

#gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  overflow-y: auto;
}

.image-container {
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  padding: 5px;
  max-width: 200px;
  text-align: center;
}
        
.image-container img {
  max-width: 100%;
  height: auto;
  display: block;
}

.slider {
  -webkit-appearance: none;
  width: 200px;
  height: 2px;
  border-radius: 5px;
  background: #000;
  outline: none;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border: 0;
  background: url("../images/butterfly-icon.gif");
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border: 0;
  background: url("../images/butterfly-icon.gif");
  cursor: pointer;
}

button {
   background-color:transparent;
   color:#e57cf7;
   border:1px solid #ffd799;
   border-radius:5px;
   box-shadow:2px 2px #e57cf7;
}

.color {
  height: 32px;
  width: 32px;
  background-color:transparent;
  color:#e57cf7;
  border:1px solid #ffd799;
  border-radius:5px;
  box-shadow:2px 2px #e57cf7;
}