body {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

canvas {
    border: 0px solid #eee;
    padding: 0;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: white;
    z-index: -100;
}

.button {
  z-index: 3;
}

body {
    cursor: crosshair;
    overflow: hidden;
    /* Hide scrollbars */
    margin: 0;
}


#canvas {
  border-right: 2px solid #891700;
  border-left: 2px solid #891700;
}

#container {
    height: calc((var(--vh, 1vh) * 100));
    height: 100vh;
    width: 100vw;
    margin: 0;
    background-image: url("./kopfschlag.png");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: 50%;
    overflow: hidden;
    position: relative;
}

#buttons {
  min-width: 50px;
}



#footer {
    background-color: #891700;
    position: absolute;
    bottom: 0;
    color: #fff;
    width: 100%;
    text-align: center;
    font-family: monospace;
    z-index: 4;
}

#header {
    background-color: #891700;
    position: absolute;
    top: 0;
    color: #fff;
    width: 100%;
    text-align: center;
    font-family: monospace;
    height: 1.2em;
    z-index: 4;
}

#about {
    float: left;
    margin-left: 5px;
}

#store {
    float: right;
    margin-right: 5px;
}

#draw, #erase {
    height: 50px;
    margin: 2px;
    margin-left: 4px;
    top: 1.7em;
    position: absolute;

    
}

#save {
    height: 50px;
    margin: 2px;
    top: 75px;
    left: 0px;
    position: absolute;
}

@media screen and (max-width: 640px) {
  #draw, #erase, #save {
    height: 100px;
  }

  #save {
    top: 125px;
  }
}


#about-div {
  background-color:#891700;
  text-align:justify;
  margin: 50px;
  display: none;
  z-index: 5000;
  position: absolute;
  top: 1.1em;
  z-index: 4;
}

#about-div h1 {
  font-family: courier;
  font-size: 200%;
  top: 0;
  color: #fff;
  width: 100%;
  text-align: left;
  font-family: monospace;
  height:1.2em;
  margin: 10px;

}
#about-div p  {
  font-family: courier;
  font-size: 100%;
  color: #fff;
  text-align: justify;
  font-family: monospace;
  margin: 10px;
}

#about-img {
  height: 150px;
  border: 1px solid white;
  padding: 1px;
  float: right;
  margin: 10px;
}

#about-div hr {
  border: 1px solid white;
  height: 1px;
}

#nft h1 {
  font-family: courier;
  font-size: 200%;
  color: #000;
  width: 100%;
  text-align: left;
  font-family: monospace;
  height:1.2em;
  margin: 10px;
}

#nft p {
  font-family: courier;
  font-size: 100%;
  color: #000;
  text-align: justify;
  font-family: monospace;
  margin: 10px;
}

a {
  color: #891700;
  font-weight: bold;
}

#flashy {
  width: 100%;
  height: 100%;
  top: 0;
  background-color: #891700;
  position:absolute;
  display:flex;
  align-items:center; /*for vertically center*/
  justify-content:center; /*for horizontally center*/
  opacity: 0;
}

.animate {
  animation: NAME-YOUR-ANIMATION 0.2s 3;  /* IE 10+, Fx 29+ */
}

#flashy span {
  font-family: courier;
  font-size: 100%;
  color: #fff;
  text-align: justify;
  font-family: monospace;
  margin: 10px;
}


@keyframes NAME-YOUR-ANIMATION {
  0% { opacity: 1; }
  100% { opacity: 0; }
}
