body {
  width: 800px;
  text-align: center;
  margin: 0 auto;
  margin-top: 5px;
}
.mastermindTitle {
  float: right;
  writing-mode: vertical-rl;
  font-size: 3em;
  margin-top: 120px;
  margin-right: 160px;
  height: 500px;
  color: #f60;
  border-radius: 50px;
  border: 1px solid silver;
  box-shadow: 2px 2px 3px black;
}
.btnNewGame {
  margin-top: 8px;
  margin-right: 150px;
  background-image: url('images/texture.jpeg');
  color: white;
  box-shadow: 2px 2px 2px black;
}
.btnNewGame:hover {
  color: #f60;
  box-shadow: 1px 1px 1px black;
}
.btnProcess {
  margin-top: 8px;
  width: 230px;
  background-color: rgb(84, 38, 29);
  border: 2px solid white;
  border-radius: 30px;
  color: white;
  box-shadow: 1px 1px 10px black;
}
.btnProcess:hover {
  color: white;
}
.textureBG {
  background-image: url('images/texture.jpeg');
  background-size: cover;
  max-width: 250px;
  border: 1px solid white;
  border-radius: 30px;
  margin: 0 auto;
  box-shadow: 2px 2px 12px black;
}
.masterCode {
  background-image: url('images/texture.jpeg');
  background-size: cover;
  max-width: 200px;
  border: 1px solid white;
  border-radius: 10px 10px 4px 4px;
  margin: 0 auto;
  padding: 5px 10px;
  margin-bottom: 5px;
  box-shadow: 2px 2px 8px black;
}
.slots {
  max-width: 200px;
  margin: 0 auto;
  height: 40px;
}
.colourPickers {
  background-image: url('images/texture.jpeg');
  background-size: cover;
  max-width: 400px;
  margin: 5px auto;
  height: 60px;
  border: 1px solid white;
  border-radius: 10px;
  padding: 5px 10px;
  box-shadow: 2px 2px 12px black;
}
.guessSlot {
  margin: 5px;
  padding: 5px;
}
.slot {
  border: 2px solid white;
  display: block;
  background: black;
  border-radius: 100%;
  height: 30px;
  width: 30px;
  margin: 0;
}
.slotEmpty {
  border: 2px solid white;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  box-shadow: 2px 2px 5px black;
}
.slotNum {
  color: white;
  font-size: 0.8em;
  margin-top: 12px;
  margin-left: -25px;
  border: 2px solid white;
  border-radius: 50%;
  padding: 2px;
}
.resultsContainer {
  display: inline-flex;
  margin-left: 30px;
  margin-top: 3px;
}
.resultPegs {
  max-width: 100px;
  margin: 0 auto;
}
.pegContainer {
  padding: 2px;
}
.resultPeg {
  border: 2px solid white;
  border-radius: 50%;
  width: 15px;
  height: 15px;
}
.white {
  background-color: white;
}
.red {
  /* background-color: red; */
  background: radial-gradient(circle at 10px 10px, white, red, #000);
}
.blue {
  background: radial-gradient(circle at 10px 10px, white, blue, #000);
}
.green {
  background: radial-gradient(circle at 10px 10px, white, green, #000);
}
.purple {
  background: radial-gradient(circle at 10px 10px, white, purple, #000);
}
.black {
  background: radial-gradient(circle at 10px 10px, white, black, #000);
}
.orange {
  background: radial-gradient(circle at 10px 10px, white, #f60, #000);
}
.silver {
  background: radial-gradient(circle at 10px 10px, white, silver, #000);
}
.modal-header {
  background-color: rgb(74, 23, 23);
  color: white;
}
.modal-footer {
  background-color: rgb(74, 23, 23);
}
.modal-footer .btn {
  background-color: white;
  color: rgb(74, 23, 23);
}
