@import url("https://fonts.googleapis.com/css2?family=Aoboshi+One&display=swap");

header {
  font-size: 20px;
  color: white;
  width: 100%;
  height: 130px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgb(209, 68, 68);
}

header h1 {
  text-align: center;
  margin-top: 10px;
}

header .information {
  text-align: center;
}

header a {
  color: rgb(255, 255, 97);
}

body {
  font-family: "Aoboshi One";
  margin: 0;
  background-color: #ffffcc;
  display: flex;
  align-items: center;
  justify-content: center;
}

main {
  width: 100%;
}

.ruleDescription {
  border: 2px white solid;
  background-color: whitesmoke;
  margin-top: 30px;
  margin-right: 50px;
  margin-left: 50px;
  margin-bottom: 50px;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  padding: 10px;
  border-radius: 50px;
}

.ruleSection {
  margin-bottom: 80px;
}

#gameIntroduction {
  color: red;
  margin-top: 50px;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}

#drawTurn {
  margin-top: 50px;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}

#judgementOfWinner {
  margin-top: 50px;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}

.container {
  margin-top: 200px;
  width: 85%;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
  background: saddlebrown;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}

.field {
  display: flex;
  flex-direction: column-reverse;
}

.table.com {
  display: flex;
  flex-direction: row-reverse;
}

.table.your {
  display: flex;
  flex-direction: row;
}

.hole {
  background: burlywood;
  border-radius: 200px;
  width: 90px;
  height: 90px;
  margin: 10px;
  border: 2px black solid;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.hole.your:hover {
  filter: saturate(200%);
}

.store {
  background: burlywood;
  border-radius: 100px;
  width: 100px;
  height: 230px;
  margin: 10px;
  border: 2px black solid;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

button {
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
}

.buttonHighLight {
  background: burlywood;
  border-radius: 200px;
  width: 90px;
  height: 90px;
  margin: 10px;
  border: 4px red solid;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

p {
  margin-top: 4px;
  margin-bottom: 2px;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
}
