@import 'game.css';
@import 'menu.css';
@import 'failure-fx.css';
@import 'confetti.css';
@import 'score-card.css';

html,
body {
  margin: 0;
}
html {
  font-family: 'Georgia', sans-serif;
  font-size: 14px;
  background: url(../img/background.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  height: 100%;
}

.logo {
  width: 600px;
}

.container {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

nav .logo {
  width: 80px;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  font-size: 24px;
  font-family: Georgia;
  font-weight: bold;
  font-style: italic;
  color: #fed8b5;
  background: #0006;
}
nav em {
  font-size: 60%;
  margin-right: 15px;
}
button {
  appearance: none;
  padding: 5px 10px 7px 10px;
  border-radius: 5px;
  border: none;
  font-size: 20px;
  font-family: inherit;
  background: #30b08f;
  color: #0a241d;
  font-family: Georgia;
  font-weight: bold;
  font-style: italic;
  box-shadow: inset 0px -2px 0px 1px #0006;
}
p {
  font-size: 20px;
}

.debug-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 20px;
  padding: 20px;
}

.debug-grid img {
  width: 100%;
  border: 1px solid white;
}
