body {
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  background-image: url("../img/numbers2.png");
  background-size: cover;
}

header {
  color: white;
  background-color:rgba(100, 100, 100, 0.9);
  padding: 20px;
  margin-bottom: 15px;
}

#main {
  color: white;
  background-color:rgba(100,100,100,0.9);
  font-size: 1.5rem;
  font-weight: bold;
  padding: 20px;
}

#feedback {
  padding: 30px;
  background-color: lightyellow;
  margin: 10px;
  font-weight:bold;
}

#wins {
  color: lightgreen;
}

#losses {
  color: lightcoral;
}

#attempts {
  color: lightblue;
}

#playerGuess {
  width: 30px;
  text-align: center;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 3px;
  border: none;
  font-size: 1.3rem;
  font-weight: bold;
}

#guessBtn {
  font-size: 16px;
  font-weight: bold;
  color: white;
  background-color: #0077cc;
  padding: 5px;
  border: none;                        /* Remove default border */
  border-radius: 5px;                  /* Rounded corners */
  cursor: pointer;                     /* Pointer cursor on hover */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5); /* Shadow */
  transition: background-color 0.3s, transform 0.2s;
}

#resetBtn {
  font-size: 16px;
  font-weight: bold;
  color: white;
  background-color: #0077cc;
  padding: 5px;
  border: none;                        /* Remove default border */
  border-radius: 5px;                  /* Rounded corners */
  cursor: pointer;                     /* Pointer cursor on hover */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Shadow */
  transition: background-color 0.3s, transform 0.2s;
}

#guessBtn:hover {
  background-color: #005bb5;           /* Darker shade on hover */
  transform: translateY(-2px);         /* Lift button on hover */
}

#guessBtn:active {
  background-color: #004494;           /* Even darker on click */
  transform: translateY(0);            /* Lower button slightly */
}

#guessBtn:focus {
  outline: 3px solid #80bfff;          /* Bright outline on focus */
}

#resetBtn:hover {
  background-color: #005bb5;           /* Darker shade on hover */
  transform: translateY(-2px);
}

#resetBtn:active {
  background-color: #004494;
  transform: translateY(0);
}

#resetBtn:focus {
  outline: 3px solid #80bfff;
}