body {
  font-family: sans-serif;
  background-color: lightgrey;
  margin: 0;
  color: black;
}

.main-header {
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
  background-color: ghostwhite;
  border-bottom: 1px solid lightgray;
}

.logo-img {
  height: 250px;
  width: auto;
  display: block;
}

.header-title {
  margin: 0;
  color: darkslategray;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

form {
  background-color: white;
  max-width: 600px;
  margin: 30px auto;
  padding: 30px;
  border-radius: 10px;
}

h2 {
  padding-bottom: 5px;
  color: steelblue;
}

.field {
  margin-bottom: 20px;
}

label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
}

input[type="text"],
input[type="email"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid grey;
  border-radius: 5px;
  box-sizing: border-box;
}

input:focus {
  outline: 2px solid steelblue;
}

label.inline {
  display: inline;
  font-weight: normal;
  margin-right: 15px;
}

#gameSection {
  text-align: center;
  background-color: whitesmoke;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
  border: 1px dashed steelblue;
}

#resultaat {
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 15px;
  min-height: 30px;
}

button {
  cursor: pointer;
  border: none;
  padding: 15px 25px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1em;
}

#gameBtn {
  background-color: orange;
  color: black;
}

#charCount {
  text-align: right;
  font-size: 0.8em;
  color: grey;
}
