body, html {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(135,41,132);
  background: radial-gradient(circle, rgba(135,41,132,1) 0%, rgba(86,27,91,1) 100%);
  font-family: "Helvetica", sans-serif;
}

.container {
  position: relative;
}

.modal-content{
  background: rgb(135,41,132);
  background: radial-gradient(circle, rgba(135,41,132,1) 0%, rgba(86,27,91,1) 100%);
  color: #FFF;
}
.modal-header{
  border-bottom: none;
}
.modal-footer{
  border-top: none;
}
.modal-title{
  font-weight:bold;
  text-align: center;
  text-shadow: 0px 0px 20px #FF0000;
}
.modal-footer .button{
  font-size: 1em;
  width: 40%;
  margin: 0px auto;
  padding: 4%;
}
ol li{
  margin-bottom: 1.2em;
}

.responsive-img{
  width: 100%;
  height: auto;
}

#dial-holder{
  text-align: center;
  position: relative;
  z-index: 5;
}
svg.dial {
  width: 175px;
  height: 175px;
  margin: 0px auto;
  background-image: url('../img/dial.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
}

.dial .knob {
  /*transition: 500ms transform;*/
}
.dial .knob circle {
  stroke: black;
  stroke-width: 1px;
  fill: url(#knobgradient);
}
.dial .knob line {
  stroke: black;
  stroke-width: 1px;
  stroke-linecap: round;
}
.dial .knob_number {
  fill: white;
  stroke: gray;
  stroke-width: 0.0625px;
  font-size: 6px;
  font-family: "Helvetica", "Arial", sans-serif;
  letter-spacing: -0.5px;
  text-anchor: middle;
  dominant-baseline: central;
  pointer-events: none;
  
  /* https://stackoverflow.com/questions/826782/css-rule-to-disable-text-selection-highlighting */
  -webkit-touch-callout: none;
  -ms-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

#clue{
  color: #FFF;
  text-transform: uppercase;
  font-size: 1.3em;
  font-weight: bold;
  text-align: center;
  line-height: 1em;
  margin-top: 10%;
  text-shadow: 0px 0px 20px #FF0000;
}
input[type="submit"], .button{
  width: 100%;
  border: 2px solid #956464;
  margin:10% 0;
  padding:10px;
  text-transform: uppercase;
  color: #FFF;
  border-radius: 20px;
  background: rgb(233,0,3);
  font-size: 2em;
  font-weight: bold;
  background: linear-gradient(180deg, rgba(233,0,3,1) 80%, rgba(199,0,2,1) 100%);
  box-shadow: 0px 2px 15px #333;
}
.button{
      display: block;
    text-align: center;
    font-size: 1.5em;
    text-decoration: none;
    line-height: 1.1em;
    padding: 6% 0;
}
#compBtn{
  font-size: 1.2em;
  position: relative;
  z-index: 2;
  opacity: 0;
}
#fire {
    max-width: 100vw;
    overflow: hidden;
    position: fixed;
    top:0;
  }

  #fire-img {
    height: 100vh; /* Full height of the viewport */
    width: auto; /* Adjusts width according to height */
    display: block;
    margin: 0 auto; /* Centers the image horizontally */
    z-index:0;
  }

  form input[type="text"], form input[type="email"], form input[type="tel"]{
    width: 100%;
    border-radius: 25px;
    padding: 5px 15px;
    margin-bottom:10px;
    border: 1px solid #FFF;
    -webkit-box-shadow: inset 0px 2px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: inset 0px 2px 5px 0px rgba(0,0,0,0.75);
    box-shadow: inset 0px 2px 5px 0px rgba(0,0,0,0.75);
    color: #d3000f;
    text-transform: uppercase;
    font-size: 80%;
    font-weight: bold;
  }
  form input[type="checkbox"]{
    margin-top: -5px;
  }
  form input::placeholder {
    color: #d3000f; /* Change the color to red */
  }
  form label{
    color: #FFF;
    font-size: 60%;
    margin-right: 10px;
    margin-top:-5px;
  }
  form input[type="submit"]{
    font-size: 1.5em;
  }
  #error{
    font-size: 1.2em;
    text-align: center;
    line-height: 1em;
    font-weight: bold;
    text-transform: uppercase;
    color: red;
  }