body {
  background: url(../img/background.jpg);
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  object-fit: cover;
  background-repeat: no-repeat ;
  background-position: center center ;
  background-attachment: fixed;
}

div {
  border: solid white;
  width: 170px;
  padding: 1rem 1.3rem;
  text-align: center;
  margin: auto;
  background-color: rgb(24, 31, 39, .8);
  letter-spacing: .92px;
}

div:hover {
  transform: scale(1.1);
  background-color: #181f27;
}

header {
  color: #b4c7c9;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

h1 {
  margin: auto;
  font-size: 3.5em;
  width: max-content;
  font-family: Cinzel;
}

nav {
  display: flex;
  justify-content: space-evenly;
}

a:hover{
  transform: scale(1.1);
}

a {
  color: #b4c7c9;
}

a:link {
  text-decoration: none;
}

section {
  color: #b4c7c9;
  margin-top: 2%;
  background-color: rgb(24, 31, 39, .8);
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  padding: 1%;
  border: solid #b4c7c9;
  margin-bottom: 3%;
  font-family: "CenturyGothic", CenturyGothic, AppleGothic, sans-serif;
  font-weight: bolder;
  line-height: 115%;
}

fieldset {
  display: flex;
  flex-direction: column;
  color: #b4c7c9;
  /* background-color: rgb(24, 31, 39, .8); */
  width: auto;
  padding: 5% 0% 0% 0%;
  align-items: flex-start;
}

legend {
  padding: 2% 0% 0% 0%;
  margin-bottom: 2%;
  margin-left: 23%;
  /* border-bottom: #b4c7c9 solid; */
}

label {
  margin-bottom: 5%;
  width: 50%;

}

input {
  margin-top: 2%;

}

form {
  color: #b4c7c9;
  margin: auto;

}

label {
  margin-top: 1%;
  padding: 0% 0% 0% 1%;
}

#adventurerForm {
  border: solid white;
  background-color: rgb(24, 31, 39, .8);
  padding: .5%;
  width: fit-content;
}

button:hover {
  transform: scale(1.1);
  background-color: rgba(18, 23, 29, 0.8);
}

button {
  font-size: small;
  background-color: #181f27;
  color: #b4c7c9;
  padding-left: 2%;
  padding-right: 2%;
  border: ridge #b4c7c9;

}

#playButton {
  color: #b4c7c9;
}

footer {
  color: #b4c7c9;
  position: fixed;
  bottom: 0;
}