* {
  padding: 0;
  margin: 0;
  overflow: hidden;
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  background-color: black;
  background-image: url("./background.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: rgba(255, 239, 15, 0.472);
  align-items: center;
  align-content: center;
  justify-content: center;
  text-align: center;
}
body h1 {
  font-size: 100px;
  margin-top: 4vh;
  margin-bottom: 4vh;
}
body h2 {
  margin-bottom: 5vh;
  font-size: 45px;
}
header {
  background-color: rgba(0, 0, 0, 0.22);
  width: 100vw;
}
header h1 {
  margin-top: 15vh;
}
#GameContainer {
  background-color: rgba(0, 0, 0, 0.22);
  align-content: top;
  width: 100vw;
  height: 100vh;
  /* border-radius: 15%; */
  /* width: 30vw;
    height: 60vh; */
}
#GuessingField {
  height: 6vh;
  width: 10vw;
  background-color: darkred;
  color: goldenrod;
  font-size: 45px;
  text-align: center;
  font-family: fantasy;
  border-radius: 5px;
  border: 1px, solid gold;
}
#GuessingField:hover {
  border: greenyellow;
}
nav.mainnav {
  display: flex;
  justify-content: space-evenly;
  padding: 5px;
}
nav.mainnav a {
  font-size: 27px;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
  font-weight: bold;
  background-color: rgb(250, 145, 8);
  border: none;
  height: auto;
  border-radius: 11px;
  width: 200px;
  height: 40px;
  margin: 3px auto 0 auto;
  padding-top: 5px;
  text-align: center;
  text-decoration: none;
  color: black;
  transition: all 0.45s ease-in-out;
}

nav.mainnav a:hover {
  /* background-color: rgb(255, 171, 103); */
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
  font-weight: bold;
  font-size: 28.5px;
  /* text-shadow: 0 0 20px gray; */
  color: rgb(0, 0, 0);
  transition: all 0.25s ease-in-out;
  box-shadow: 0px 0px 10px 4px greenyellow;
}
