body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial,
    sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  color: #f6f8fa;
  background-color: #54292e;
  padding: 20px;
  font-weight: bold;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.logo-img {
  width: 50%;
  margin: 2em;
  border-radius: 0.5em;
  border: 0.1em solid rgb(187, 16, 50);
}

.signup-container {
  background-color: #222222;
  border: 1px solid #454545;
  border-radius: 0.5em;
  min-width: 20%;
  padding: 2em;
  filter: drop-shadow(0 0 0.3em rgb(32, 11, 15));
}

h1 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
}

.form-group input {
  width: 100%;
  padding: 8px;
  font-size: 14px;
  min-height: 3em;
  border: 1px solid #e1e4e8;
  border-radius: 6px;
  box-sizing: border-box;
}

button {
  background-color: #9b4744;
  color: white;
  font-size: 1em;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  cursor: pointer;
}

button:hover {
  background-color: #224466;
}

#content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.game-container {
  min-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#game {
  min-width: 90%;
  min-height: 50em;
  margin-bottom: 20px;
}

footer {
  text-align: center;
  align-items: baseline;
  min-height: 2em;
  font-size: 14px;
  margin-top: 20px;
}

a {
  color: #7b8784;
  text-decoration: none;
}

a:hover {
  color: #f6f8fa;
}

@media screen and (max-width: 600px) {
  .logo-img {
    width: 90%;
  }
}
