@font-face {
  font-family: "Circular";
  src: url("CircularStd-Black.otf");
}

:root{
  font-family: "Circular";
  color: white
}
body,html {
  margin: 0;
}
* {
  box-sizing: border-box;
}

#wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
  background-color: black;
  opacity: 0;
  transition: .3s ease;
}
#wrapper.ready {
  opacity: 1;
}
#container {
	/* background-color: white; */
	position: relative;
}
#display {
  /* width: 1920px;
	height: 1080px; */
	position: absolute;
	top: 0;
	left: 0;
	transform-origin: top left;
  background-image: url(./bg-doorprize.jpeg);
  background-size: cover;
  background-position: center;
}


.logo {
  position: absolute;
  text-align: center;
  top: 30px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.logo img{
  width: 300px;
}

.content {
  position: absolute;
  left: 0;
  right: 0;
  top: 100px;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.start-btn {
  width: 160px;
  height: 160px;
  background-color: white;
  color: #db2861;
  border-radius: 80px;
  font-size: 40px;
  text-align: center;
  text-transform: uppercase;
  border: none;
  transition: .3s ease;
  /* outline: 10px solid white; */
  font-family: inherit;
  margin-top: 40px;
}
.start-btn:hover {
  box-shadow: 0 10px 20px -5px rgba(0,0,0,.1);
  outline: 10px solid #eab308;
}

.confetti {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  pointer-events: none
}

.fullscreen-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.timer {
  width: 160px;
  height: 160px;
  position: relative;
  margin-top: 40px;
  display: none;
  background-color: white;
  border-radius: 80px;
}
svg {
	transform: rotate(-90deg);
}
.circle_animation {
	stroke-dasharray: 440; /* this value is the pixel circumference of the circle */
	stroke-dashoffset: 0;
	transition: all 1s linear;
}
.timer-caption{
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  color: #db2861;
}
