@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;500;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  background-color:#ffece8;
}
body {
  width: 100%;
  height: 100vh;
}
.container {
  width: 100%;
  height: 100vh;
  text-align: center;
}
span {
  color: brown;
}
label {
  padding-left: 2px;
  padding-right: 6px;
}
section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 5px;
  margin-bottom: 1vmax;
}
#sec1 > *{
  margin-top: 3px;
  margin-bottom: 3px;
}
#game_container {
  width: 100%;
  height: 70vh;
  background-color: rgb(102, 107, 102);
  display: flex;
  justify-content: center;
  align-items: center;
}
#game {
  width: 100%;
  height: 100%;
  max-width: 700px;
  max-height: 800px;
  margin-top: 6px;
}
table,
th,
td {
  border: 2px solid red;
  color: white;
  background-color: black;
}
td{
  min-width:  70px;
  min-height: 80px;
}
form{
  min-width: 250px;
}
.radio {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1vmin;
}
input[type="radio"] {
  display: grid;
  place-content: center;
  appearance: none;
  /* removing default styling */
  font: inherit;
  color: brown;
  width: 1.15em;
  height: 1.15em;
  border: 0.15em solid brown;
  border-radius: 50%;
  /* transform: translateY(-0.075em); */
}
input[type="radio"]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  border-radius: 50%;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em black;
}
input[type="radio"]:checked::before {
  transform: scale(1);
}
#submit_button{
    color: red;
    border: 3px solid brown;
    background-color: black;
    width: 100%;
    height: 40px;
    font-style: bold;
}
#submit_button:hover{
    color: black;
    border: 3px solid black;
    background-color: brown;
}
#heading{
    color: brown;
    font-size: 2.5em;
    text-shadow: 2px 2px black;
}
#name{
  text-shadow: 1px 1px black;
}