.center {
  display: flex;
  justify-content: center;
  text-align: center;
  border: solid 2px #08809e;
  background-color: rgb(12, 81, 95);
}
p{
  background-color: #2ddc16;
  color: #283149;
  font-size: 1.3rem;
  border: solid black 5px;
  border-radius: 10px;
  padding: 10px;
}
.hidden {
  display: none !important;
}

body {
  background-color: #283149;
}

h1 {
  font-size: 5rem;
  color: #DBEDF3;
  text-shadow: 3px 0 #DA0463;
}

button {
  background-size: contain;
  background-repeat: no-repeat;
}

#StagedDice{
  background-color: #5c3c18e7;
  display: flex;
  width: 325px;
  height: 55px;
  margin: 20px;
  padding: 5px;
  border: solid rgb(161, 122, 63);
  border-radius: 15px;
}
.Die_1{
  margin: 2px;
  width: 50px;
  height: 50px;       
  background-image: url('./images/dice-sheet.png');
  background-position: 0px;  
}
.Die_2{
  margin: 2px;
  width: 50px;
  height: 50px;       
  background-image: url('./images/dice-sheet.png');
  background-position: -50px;  
}
.Die_3{
  margin: 2px;
  width: 50px;
  height: 50px;       
  background-image: url('./images/dice-sheet.png');
  background-position: -100px;  
}
.Die_4{
  margin: 2px;
  width: 50px;
  height: 50px;       
  background-image: url('./images/dice-sheet.png');
  background-position: -150px;  
}
.Die_5{
  margin: 2px;
  margin: 2px;
  width: 50px;
  height: 50px;       
  background-image: url('./images/dice-sheet.png');
  background-position: -200px;  
}
.Die_6{
  margin: 2px;
  margin: 2px;
  width: 50px;
  height: 50px;       
  background-image: url('./images/dice-sheet.png');
  background-position: -250px;  
}

#PTurn{
  background-color: #d9e272;
  border: solid salmon 2px;
  border-radius: 5px;
  padding-left: 5px;
  padding-right: 5px;
  margin-left: 10px;
  margin-right: 10px;
}
#p1{
  background-color: #8e3c09;
  border: solid rgb(70, 13, 6) 2px;
  border-radius: 5px;
  padding-left: 5px;
  padding-right: 5px;
  margin-left: 10px;
  margin-right: 10px;
}
#p2{
  background-color: #45bb19;
  border: solid rgb(27, 115, 10) 2px;
  border-radius: 5px;
  padding-left: 5px;
  padding-right: 5px;
  margin-left: 10px;
  margin-right: 10px;
}
#currScore{
  background-color: #0e8284;
  border: solid rgb(10, 73, 115) 2px;
  border-radius: 5px;
  padding-left: 5px;
  padding-right: 5px;
  margin-left: 10px;
  margin-right: 10px;
}
#rollBtn{
  background-color: #2ddc16;
  border: solid rgb(10, 115, 61) 5px;
  width: 150px;
  height: 50px;
  border-radius: 15px;
  padding-left: 5px;
  padding-right: 5px;
  margin: 10px;
}
#rollBtn:hover{
  background-color: #239813;
}
#rollBtn:active{
  background-color: #3ff027;
}
#keepScore{
  background-color: #e7810c;
  border: solid rgb(137, 89, 31) 5px;
  width: 150px;
  height: 50px;
  border-radius: 15px;
  padding-left: 5px;
  padding-right: 5px;
  margin: 10px;
}
#keepScore:hover{
  background-color: #7a4d0d;
}
#keepScore:active{
  background-color: #ffb300;
}
button{
  background-color: #cae70c;
  border: solid rgb(125, 117, 14) 5px;
  width: 150px;
  height: 30px;
  border-radius: 15px;
  padding-left: 5px;
  padding-right: 5px;
  margin: 10px;
}
button:hover{
  background-color: #868007;
}
button:active{
  background-color: #ffff64;
}

@media screen and (max-width: 700px) {
  h2 {
    font-size: 10px;
  }
  #rollBtn {
    font-size: 10px;
    margin: 0px;
    padding: 0px;
    width: 100px;
    height: 25px;
  }
  #keepScore {
    font-size: 10px;
    margin: 0px;
    padding: 0px;
    width: 100px;
    height: 25px;
  }
  button{
    width: 100px;
    height: 30px;
    font-size: 10px;
  }
}