@font-face {
  font-family: "Poppins BLACK";
  src: url("Poppins-Black.ttf") format("truetype");
}
@font-face {
  font-family: "Poppins Regular";
  src: url("Poppins-Regular.ttf") format("truetype");
}

body {
  background-color: #620f67;
  font-family: "Poppins Regular";
  color: #fff;
  text-align: center;
}
a {
  color: #fff;
}

.wrap {
  width: 90%;
  max-width: 800px;
  min-height: 80%;
  margin: 0 auto 20px auto;
  padding: 3vmin;
  text-align: center;
  border: 1px solid #333;
  transition: all 0.3s 0s;
  img {
  max-width: 80vw;
  max-height: 40vmin;
  width: auto;
  height: auto;
}
@media (min-width: 800px) {
  img {
    max-width: 800px;
  }
}
}
@media (orientation: landscape) or (min-width: 889px) {
  .wrap {
    width: 800px;
  }
}
.hidden {
  display: none;
}
.gallery {
  width: 100%;
}
.gallery div {
  display: inline-block;
  position: relative;
  padding: 1vmin;
}
.uploadbutton {
  border: 1px solid #888;
  background-color: #000;
  padding: 2vmin 5vmin;
  font-size: 5vmin;
  margin-bottom: 5vmin;
  color: #fff;
  text-transform: uppercase;
  font-family: "Poppins BLACK";
}
.userpic-wrap {
  margin: 5vmin auto 3vmin;
  padding: 0px;
}
.radio-wrap {
  margin: 1vmin auto 3vmin;
  padding: 0px;
}

.radio-label {
  display: inline;
  position: relative;
  padding-left: 6vmin;
  margin: 0px 1.5vmin;
  cursor: pointer;
  font-size: 4vmin;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.radio-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 4vmin;
  width: 4vmin;
  background-color: #111;
  border-radius: 50%;
  border: 1px solid #888;
}
.radio-label:hover input ~ .checkmark {
  background-color: #333;
  border: 1px solid #ccc;
}
.radio-label input:checked ~ .checkmark {
  background-color: #ccc;
  border: 1px solid #ccc;
}


p {
  font-size: 3vmin;
}
canvas {
  background: transparent;
}
