@font-face {
    font-family: bangers;
    src: url(fonts/Bangers-Regular.ttf);
}
@font-face {
    font-family: overpass;
    src: url(fonts/overpass.ttf);
}
body{
    background-repeat: no-repeat;
    background-position: left center;
    background-attachment: fixed;
    background-size: cover;
}
#title{
    display:inline;
    position:absolute;
    background-color:rgba(255,255,255,0.5);
    padding:1% 3% 1% 3%;
    margin:1%;
    font-family:'bangers';
    font-size:45pt;
}
.dialogueDiv{
    border-left:5px solid rgb(164, 164, 255);
    padding:2%;
    display:inline-block;
    position: absolute;
    font-family: 'overpass';
    font-size:16pt;
    width:50%;
    background-color:rgba(255,255,255,0.5);
    top:80%;
    left:45%;
}
.nextArrow{
    position: absolute;
    top:65%;
    left:90%;
    margin-left:2vw;
    background-color: rgb(200, 200, 255);
    transition-duration: 0.4s;
}
.nextArrow:hover {
    background-color: rgb(103, 103, 255);
    color: white;
}
.nextPageButton{
    position: absolute;
    font-family: 'overpass';
    font-size:20pt;
    top:50%;
    left:45%;
    padding:3%;

    background-color: rgb(200, 200, 255);
    transition-duration: 0.4s;
}
.nextPageButton:hover {
    background-color: rgb(103, 103, 255);
    color: white;
}
#stone{
    background-color:rgba(0, 0, 0, 0.502);
    color: white;
    position: absolute;
    top:2%;
    right:1%;
    font-family: 'overpass';
    font-size:16pt;
    border: 3px solid rgb(239, 211, 255);
    border-radius:30px;
    padding: 2%;
}
.questionDiv{
    border:5px solid rgb(164, 164, 255);
    border-radius:30px;
    padding:2%;
    display:inline-block;
    position: absolute;
    font-family: 'overpass';
    font-size:16pt;
    width:50%;
    background-color:rgba(255,255,255,0.5);
    bottom:5%;
    left:45%;
}
.questionSubmitButton{
    margin-top:2vh;
    background-color: rgb(200, 200, 255);
    transition-duration: 0.4s;
    font-family:'overpass';

}
.questionSubmitButton:hover {
    background-color: rgb(103, 103, 255);
    color: white;
}
.questionItself{
    font-size:25pt;
}
/* following radio design is from https://codepen.io/AbubakerSaeed/pen/MWaEqJP*/
.rad-label {
    display: flex;
    align-items: center;
    font-family:'overpass';
  
    border-radius: 100px;
    padding: 14px 16px;
    margin: 10px 0;
  
    cursor: pointer;
    transition: .3s;
  }
  
  .rad-label:hover,
  .rad-label:focus-within {
    background: hsla(0, 0%, 80%, .14);
  }
  
  .rad-input {
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 1px;
    opacity: 0;
    z-index: -1;
  }
  
  .rad-design {
    width: 22px;
    height: 22px;
    border-radius: 100px;
  
    background: linear-gradient(to right bottom, hsl(290, 97%, 62%), hsl(225, 97%, 62%));
    position: relative;
  }
  
  .rad-design::before {
    content: '';
  
    display: inline-block;
    width: inherit;
    height: inherit;
    border-radius: inherit;
  
    background: hsl(0, 0%, 90%);
    transform: scale(1.1);
    transition: .3s;
  }
  
  .rad-input:checked+.rad-design::before {
    transform: scale(0);
  }
  
  .rad-text {
    color: hsl(0, 0%, 20%);
    margin-left: 14px;
    letter-spacing: 3px;
    font-size: 18px;
    font-weight: 900;
    font-family:'overpass';
  
    transition: .3s;
  }
  
  .rad-input:checked~.rad-text {
    color: hsl(0, 0%, 0%);
  }

.canvas-container{
  position: relative;
}
  .gameItems{
    width:25%;
  }

#canvas1 {
  width: 400px;
  height: 300px;
  border: 5px solid rgb(164, 164, 255);
  background: black;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-170%, 130%);
}
.resultDiv{
    border-left:5px solid rgb(164, 164, 255);
    padding:2%;
    display:inline-block;
    position: absolute;
    font-family: 'overpass';
    font-size:16pt;
    width:50%;
    background-color:rgba(255,255,255,0.5);
    top:20%;
    left:45%;
}
.disclaimerDiv{
    padding:2%;
    display:inline-block;
    position: absolute;
    font-family: 'overpass';
    font-size:10pt;
    width:96%;
    background-color:rgba(255,255,255,0.5);
    top:40%;
    left:0%;
}

#enterButton {
  z-index: 1000;
  position: absolute;
  left: 13%;
  top: 80%;
  transform: translate(140%, 1700%);
  margin-top:2vh;
  background-color: rgb(200, 200, 255);
  font-size: 20px;
  transition-duration: 0.4s;
  font-family:'overpass';
}

#enterButton:hover {
  background-color: rgb(103, 103, 255);
  color: white;
}

.gameInteraction{
    border-left:5px solid rgb(164, 164, 255);
    padding:2%;
    display:inline-block;
    position: absolute;
    font-family: 'overpass';
    font-size:16pt;
    width:50%;
    background-color:rgba(255,255,255,0.5);
    top:80%;
    left:45%;
}