@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,500;0,600;1,500;1,600&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style-type: none;
  text-decoration: none;
}

body {
  font-family: "Poppins", Arial, sans-serif;
  transition: background-color 0.5s, color 0.5s;
}

header {
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  background-color: #f3f4f6;
  color: #1f2937;
}
header .nav-section ul li a {
  color: #1f2937;
}
header .nav-section ul li a:hover {
  color: #3b82f6;
}
header .nav-section ul li a.active {
  color: #2563eb;
  font-weight: bold;
  border-bottom: 2px solid #2563eb;
}
header .logo-section {
  display: flex;
  align-items: center;
  cursor: pointer;
}
header .logo-section img {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  border-radius: 50%;
}
header .logo-section h1 {
  font-size: 1.8rem;
  font-weight: 600;
}
header .nav-section ul {
  display: flex;
  align-items: center;
}
header .nav-section ul li {
  margin: 0 15px;
  position: relative;
}
header .nav-section ul li::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  transition: width 0.3s;
  background-color: currentColor;
}
header .nav-section ul li:hover::after {
  width: 100%;
}

main {
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 79.5vh;
  padding: 15px 20px;
}
main .game-section {
  height: 80%;
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
}
main .game-section .instructions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  border-radius: 15px;
  height: 50%;
  padding: 15px 20px;
  background-color: #f3f4f6;
  border: 1px solid #d1d5db;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
main .game-section .instructions h2 {
  text-align: center;
  margin-bottom: 20px;
}
main .game-section .game {
  border: solid 1px green;
  height: 40%;
  width: 80%;
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border-radius: 15px;
  background-color: #f3f4f6;
  border: 1px solid #d1d5db;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
main .game-section .game .input-section {
  width: 50%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
main .game-section .game .input-section input {
  border: 1px solid #d1d5db;
  border-radius: 5px;
  padding: 10px 15px;
  width: 25%;
  font-size: 1rem;
  color: #1f2937;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
main .game-section .game button {
  border: none;
  background-color: #2563eb;
  color: #ffffff;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
main .game-section .game button:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}
main .history-section {
  width: 40%;
  height: 80%;
  padding: 15px 20px;
  border-radius: 15px;
  background-color: #f3f4f6;
  border: 1px solid #d1d5db;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}
main .history-section h3 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937;
}
main .history-section table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  color: #1f2937;
  text-align: center;
}
main .history-section table thead {
  background-color: #ffffff;
  border-bottom: 2px solid #d1d5db;
}
main .history-section table thead th {
  padding: 10px 15px;
  font-weight: 600;
  text-transform: uppercase;
}
main .history-section table tbody tr:nth-child(even) {
  background-color: #f3f4f6;
}
main .history-section table tbody tr:hover {
  background-color: #93c5fd;
}
main .history-section table tbody td {
  padding: 10px 15px;
  border-bottom: 1px solid #d1d5db;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 20px;
  background-color: #f3f4f6;
  border-top: 1px solid #d1d5db;
  font-weight: bold;
  font-size: 0.9rem;
  color: #1f2937;
}

/*# sourceMappingURL=style.css.map */
