@font-face {
  font-family: "continental";
  src: url(fonts/Continental-Regular.otf);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
}

body,
html {
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: "continental";
}

.container {
  position: relative;
  width: 100vw;
  height: 100vh;
}

.background-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 1;
}

#drawingCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  cursor: crosshair;
}

.thecollection {
  position: absolute;
  text-transform: uppercase;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: #111111;
  transition: all 0.3s ease;
  z-index: 999;
  font-size: 1.5rem;
  border: #111111 solid 0.2rem;
  padding: 1rem;
  border-radius: 5rem;
  cursor: pointer;
}

.thecollection:hover {
  color: #dddddd;
  border: #dddddd solid 0.2rem;
}

@media only screen and (max-width: 1024px) {
  .background-image {
    top: 45%;
  }

  .thecollection {
    font-size: 0.9rem;
    border: #111111 solid 0.1rem;
  }

  .thecollection:hover {
    border: #dddddd solid 0.1rem;
  }
}
