body {
  margin: 30px;
  padding: 0;
  background: hsla(175, 87%, 24%, 0.52);
}

.game {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(175, 85%, 10%, 0.92);
}

.peg {
  width: 30px;
  height: 300px;
  background: rgba(236, 231, 231, .8);
  position: absolute;
  margin: 40px;
  border-radius: 10%;
}

.disk {
  width: 80px;
  height: 200px;
  background: rgb(211, 35, 35, .8);
  margin: 10px;
  border-radius: 15%;
  position: absolute;

}

button {
  margin: 20px;
  font-size: 2em;
  border-radius: 20px;
  border-style: none;
  padding: 5px; 
}