@charset "UTF-8";
body {
  font-family: "Courier New", Helvetica, sans-serif;
  font-size: 1.2em;
  width: 1000px;
  margin: auto;
  background-color: #00100B;
  color: #FBFBFF;
}

button,
input,
select {
  font-family: "Courier New", Helvetica, sans-serif;
  font-size: 1em;
}

header,
footer {
  margin: 1em 0 2em;
}

h1 {
  font-size: 2em;
}

h2 {
  font-size: 1.5em;
}

h1, h2, button, label,
.username {
  font-weight: bold;
}

button {
  box-shadow: inset 0px 1px 0px 0px #004d4d;
  background: linear-gradient(to bottom, #008080 5%, #004d4d 100%);
  background-color: #008080;
  border-radius: 5px;
  border: 1px solid #004d4d;
  display: inline-block;
  cursor: pointer;
  color: #FBFBFF;
  padding: 6px 24px;
  text-decoration: none;
  margin-top: 1em;
}
button:hover {
  background: linear-gradient(to bottom, #00b3b3 5%, #008080 100%);
  background-color: #00b3b3;
}
button:active {
  position: relative;
  top: 2px;
}

/* éléments masqués au chargement de la page */
#board,
#timer,
#playagain {
  display: none;
}

#main-title {
  text-align: center;
}

#settings,
#board {
  display: flex;
  justify-content: space-between;
}

.form {
  max-width: 70%;
}
.form p {
  margin: 0.3em 0 0.6em;
  font-size: 1rem;
  color: #00b3b3;
}

#scores {
  padding-left: 15px;
  text-align: right;
}
#scores h2 > span {
  display: block;
  font-weight: normal;
  font-size: 1rem;
  color: #00b3b3;
}

#board {
  max-width: 850px;
  flex-wrap: wrap;
  gap: 15px;
  margin: auto;
}

.card {
  width: 100px;
  height: 100px;
  background: url(./../images/cards.png) 0 100px no-repeat, radial-gradient(circle, rgb(39, 199, 199) 0%, rgb(0, 0, 0) 125%);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  border: 1px solid #FBFBFF;
  border-radius: 5px;
}

.progressbar {
  margin-top: 2em;
  height: 1em;
  position: relative;
  background: #555;
  border-radius: 25px;
  padding: 0.5em;
  box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.3);
}
.progressbar > .filler {
  height: 100%;
  border-radius: 20px;
  background-color: #008080;
  background-image: linear-gradient(#00b3b3, #008080);
  box-shadow: inset 0 2px 9px rgba(255, 255, 255, 0.3), inset 0 -2px 6px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}/*# sourceMappingURL=style.css.map */