body {
  padding: 20px 0;
  background-color: #fff;
}
.prizefadein {
  animation: fadeIn 1s ease-in;
}
.prizediv {
  padding: 10px 20px;
  text-align: center;
  z-index: 1;
}
.prizetext {
  color: #d92c27;
}
.container {
  font-family: Commissioner, sans-serif;
  background-color: #fff;
  position: relative;
  width: 300px;
  height: 330px;
  margin: 0 auto;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
h2 {
  font-family: Prata, serif;
}
.canvas {
  position: absolute;
  top: 0;
  z-index: 999;
}
.small {
  font-size: 11px;
}
.btn-done{
  height:50px;
  width:100%;
  background-color:#D92C27;
  display: block;
  margin-top:360px;
  color:#fff;
  text-align: center;
  line-height:50px;
  font-size:16px;
  border-radius: 5px;
  text-decoration: none;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
