* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  background-color: #003049;
  color: #fdf0d5;
}

.logo {
  height: 80px;
  position: absolute;
  bottom: 25px;
  right: 25px;
  cursor: pointer;
  transition: scale 0.25s ease;
}
.logo:hover {
  scale: 1.02;
}

/*_______________________1st Page__________________________________*/
.name {
  color: #fdf0d5;
  font-size: 8vw;
  margin: 50px 0 0 0px;
  text-align: center;
}

@media (max-width: 500px) {
  .name {
    font-size: 15vw;
  }
}

a {
  text-decoration: none;
}
.Start-now {
  font-size: 33px;
  font-weight: 900;
  color: #003049;
  background: #fdf0d5;
  padding: 10px;
  border-radius: 60px;
  height: 62px;
  width: 230px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  margin-top: 31px;
  box-shadow: 0px 0px 15px #fdf0d5;
  border: none;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}

.Start-now:hover {
  box-shadow: none;
}

/*_______________________2nd Page__________________________________*/
.user_container {
  justify-content: space-between;
  /*  background-color: darkred;*/
  height: 355px;
  width: 70vw;
  margin: auto;
  display: flex;
  gap: 38px;
  margin-top: 50px;
}

.user {
  height: 360px;
  width: 250px;
  background-color: #fdf0d5;
  margin: 25px;
  border-radius: 25px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.user_container .circle {
  height: 150px;
  width: 150px;
  background-color: #003049;
  border-radius: 50%;
  border: none;
  margin-top: 30px;
}

.user_container img {
  height: 150px;
  width: 150px;
  margin-top: 30px;
}

.player-name {
  margin: auto;
  text-align: center;
  height: 43px;
  width: 192px;
  border: 5px solid #003049;
  border-radius: 35px;
  color: #003049;
  font-size: 20px;
  font-weight: 600;
}

.user div {
  color: #003049;
  /*  display: flex;*/
  /*  align-items: center;*/
}

.user label {
  font-size: 26px;
  margin-right: 4px;
}

.user input[type="radio"] {
  height: 20px;
  width: 24px;
  margin: 14px 15px 0 0px;
}

#play-game {
  font-size: 35px;
  font-weight: 600;
  padding: 13px 35px;
  border-radius: 38px;
  border: none;
  background-color: #fdf0d5;
  color: #003049;
  box-shadow: 0px 0px 15px #fdf0d5;
  margin: 60px 0px 0 41vw;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}

#play-game:hover {
  box-shadow: none;
}

/*____________________________game page HTML _______________________*/
h1 {
  color: #fdf0d5;
  font-size: 65px;
  text-align: center;
  margin-top: 20px;
  margin-bottom: -40px;
}

.game_container {
  height: 485px;
  width: 100%;
  /*  background-color: red;*/
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.game {
  height: 343px;
  width: 347px;
  margin-left: 70px;
  /*  background-color: green;*/
}

.game .box {
  height: 100px;
  width: 100px;
  background-color: #fdf0d5;
  margin: 6px;
  display: inline-block;
  border-radius: 12px;
}

/*Add .draw_box class in boxes when game is draw*/
.draw_box {
  background-color: black;
  color: #fff;
}

.display_turn {
  color: #fdf0d5;
  font-size: 35px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 9px;
}

.winner_name {
  color: lime;
}

.game div p {
  font-size: 70px;
  color: #c1121f;
  text-align: center;
  position: absolute;
  font-weight: 900;
  margin: 0 0 0 20px;
}

.information {
  height: 240pxpx;
  width: 600px;
  /*  background-color: green;*/
  margin-right: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.plaer1_score {
  height: 230px;
  width: 200px;
  /*  background-color: red;*/
}

.plaer2_score {
  height: 230px;
  width: 200px;
  /*  background-color: red;*/
  margin: 0 30px 0 0;
}

.information .name {
  font-size: 38px;
  font-weight: 500;
}

.information .score {
  font-size: 52px;
  margin: 0 0 -47px 75px;
}

.reset_game {
  font-size: 32px;
  padding: 10px 20px;
  border: none;
  border-radius: 41px;
  background: #fdf0d5;
  box-shadow: 0px 0px 25px #fdf0d5;
  margin: -180px 0 0 61vw;
  color: #003049;
  font-weight: 600;
  position: absolute;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}

.reset_game:hover {
  box-shadow: none;
}

/*style apply resst btn when its conver into newGame*/
.new_game_btn {
  background-color: lime;
  color: #fff;
  box-shadow: 0px 0px 15px lime;
}

.winner_box {
  background-color: green;
  color: #fff;
  background: green;
}

.winner_box p {
  background-color: green;
  color: white;
  background: green;
}

@media (max-width: 1100px) {
  .hide_show {
    display: none;
  }

  #not_open {
    display: block;
    width: 100%;
  }
}

@media (min-width: 1100px) {
  #not_open {
    display: none;
  }
}

#not_open h1 {
  font-size: 8vw;
  text-align: center;
  margin: 10px;
  margin-top: 100px;
}
.logo2 {
  height: 80px;
  /* position: absolute; */
  bottom: 25px;
  right: 25px;
  margin: auto;
  margin-top: 30px;
  cursor: pointer;
  transition: scale 0.25s ease;
}
.logo2:hover {
  scale: 1.02;
}
