* {
  margin: 0;
}
body {
  background: black;
  color: darkgrey;
  overflow: hidden;
}
canvas {
  visibility: hidden;
}
#permanent, #labelPermanent {
  visibility: hidden;
  /* color: white; */
}
#uploadBox {
  visibility: hidden;
}
#downloadBox {
  visibility: hidden;
}
#downloadLink {
  /* transition: all 1s ease-in-out; */
}
#downloadLink:hover {
  /* text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #fff, 0 0 50px #fff, 0 0 60px #fff, 0 0 70px #fff; */
}
h1, h2 {
  padding: 20px;
}
p {
  margin: 10px;
}
a {
  color: grey;
  font-size: 100px;
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  text-decoration: none;
}

.icon-left {
  /* Füge hier die gewünschten Stile für das Icon auf der linken Seite hinzu */
  /* Zum Beispiel: */
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url('copyicon.png');
  background-size: cover;
  filter: invert(100%);
  visibility: hidden;
  margin-right: 10px;
}

.icon-right {
  /* Füge hier die gewünschten Stile für das Icon auf der rechten Seite hinzu */
  /* Zum Beispiel: */
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url('deleteIconRed.png');
  background-size: cover;
  visibility: hidden;
  margin-left: 10px;
  /* filter: invert(100%); */
}

h3 {
    margin: 10px;
}
h3:hover {
  color: white;
  margin-left: 10px;
}
h3:hover .icon-right {
  visibility: visible;
}
h3:hover .icon-left {
  visibility: visible;
}


#snackbar {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 50%;
  bottom: 30px;
  font-size: 17px;
}

#snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}