* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Body Styling */
body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  /* background-color: #467599; */
  background-color: rgba(0, 0, 128, 0.5);
}
/* Main Container Styling */
.game {
  width: 420px;
  padding: 20px 20px;
}
/* Each Row Styling */
.row {
  display: flex;
  justify-content: center;
}
/* Each Box Styling */
.box {
  width: 80px;
  height: 80px;
  margin: 5px;
  border: none;
  outline: none;
  border-radius: 10px;
  box-shadow: 0px 0px 5px 2px rgba(29, 51, 84, 0.6);
  background-color: rgba(0, 0, 128, 0.8);
  cursor: pointer;
  font-size: 34px;
  font-weight: 600;
  color: #fff;
}
/* Heading Styling */
.game h1 {
  text-align: center;
  margin-bottom: 10px;
  /* color: rgba(255, 255, 255, .8); */
  color: gold;
}
/* Reset Button Styling */
#reset-btn {
  background-color: navy;
  width: 150px;
  height: 45px;
  border: none;
  outline: none;
  color: rgba(255, 255, 255, 1);
  font-weight: 600;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
}
/* Reset Button Hover Effect */

#reset-btn:hover {
  background-color: darkorange;
  color: #fff;
}
/* Reset div Styling */

.reset {
  margin-top: 10px;
  padding: 10px;
  display: flex;
  justify-content: center;
}
/* Display Message Styling */
#msg {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 25px;
  text-align: center;
}
/* New Button Styling */
#new-btn {
  background-color: navy;
  width: 150px;
  height: 45px;
  border: none;
  outline: none;
  color: rgba(255, 255, 255, 1);
  font-weight: 600;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  /* margin-left: 35%; */
}
/* New Button Hover Effect */
#new-btn:hover {
  background-color: darkorange;
  color: #fff;
}
/* Turn Display Styling */
.turn {
  text-align: center;
  font-weight: bold;
  padding: 10px 0;
  color: #fff;
}
/* Winner Display Container */
.msg-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 20px;
}
/* Hide Class to Hide Winner Container */
.hide {
  display: none;
}

/* For Small Size Display */
@media screen and (max-width: 400px) {
  #msg {
    font-size: 16px;
  }
}
