@import url("https://fonts.googleapis.com/css2?family=Monomaniac+One&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Monomaniac One", sans-serif;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
}
#game-container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0.7rem;
}
.card {
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 3px 0 rgba(0, 0, 0, 0.06);
  margin-bottom: 1rem;
}

.card-header {
  padding: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.8px;
}

.card-content {
  padding: 1rem;
  text-align: center;
}

.header-button {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}
#color-word {
  font-size: 48px;
  margin-bottom: 20px;
  text-align: center;
}
#instruction {
  font-size: 0.9rem;
  text-align: left;
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
}
#color-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-left: 0.4rem;
}
.color-option {
  width: 70px;
  height: 70px;
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  border-radius: 5px;
  transition: transform 0.1s;
}
.color-option:hover {
  transform: scale(1.1);
}
li {
  list-style-position: inside;
}
ul {
  font-weight: normal;
}

#score,
#level,
#timer {
  font-size: 1rem;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
}
span i {
  vertical-align: middle;
}
#start-button {
  width: 100%;
  font-size: 18px;
  padding: 10px 20px;
  background-color: #0c1844;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: "Monomaniac One", sans-serif;
}
.control {
  display: flex;
  justify-content: center;
}
.game-info {
  display: flex;
  justify-content: space-around;
  vertical-align: middle;
}
a,
span {
  text-decoration: none;
  color: black;
  text-align: center;
  font-family: "Poppins", sans-serif;
}
