.number-guessing-game {
  padding: 20px;
}
.number-guessing-game__intro {
  margin-bottom: 20px;
}
.number-guessing-game__intro h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.number-guessing-game__intro p {
  font-size: 1.2rem;
  color: #1e293b;
}
.number-guessing-game__intro button {
  margin-left: 10px;
  padding: 0.5rem 1rem;
  background-color: rgba(238, 102, 153, 0.9333333333);
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}
.number-guessing-game__intro button:hover {
  background-color: #f6d;
}
.number-guessing-game__gameArea {
  margin-top: 20px;
}
.number-guessing-game__gameArea #feedback {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #3b82f6;
}
.number-guessing-game__gameArea input {
  padding: 0.5rem;
  width: 200px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}
.number-guessing-game__gameArea button {
  margin-left: 10px;
  padding: 0.5rem 1rem;
  background-color: rgba(238, 102, 153, 0.9333333333);
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}
.number-guessing-game__gameArea button:hover {
  background-color: #f6d;
}

.rock-paper-scissors-game {
  padding: 20px;
  max-width: 600px;
  margin: 0 auto;
}
.rock-paper-scissors-game__intro {
  margin-bottom: 30px;
  text-align: center;
}
.rock-paper-scissors-game__intro h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}
.rock-paper-scissors-game__intro p {
  font-size: 1.1rem;
  color: #1e293b;
  margin-bottom: 20px;
  line-height: 1.5;
}
.rock-paper-scissors-game__gameArea {
  margin-top: 20px;
  padding: 30px 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
  text-align: center;
}
.rock-paper-scissors-game__gameArea #feedback {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 20px;
  min-height: 3em;
  white-space: pre-wrap;
}
.rock-paper-scissors-game__gameArea input[type=radio] {
  margin: 0 5px 0 15px;
  transform: scale(1.2);
  cursor: pointer;
}
.rock-paper-scissors-game__gameArea input[type=radio]:first-of-type {
  margin-left: 0;
}
.rock-paper-scissors-game__gameArea label {
  font-size: 1.2rem;
  cursor: pointer;
  margin-right: 10px;
}
.rock-paper-scissors-game__gameArea #submitChoice,
.rock-paper-scissors-game__gameArea #endGame {
  margin-top: 25px;
}

.btn {
  margin-left: 10px;
  padding: 0.5rem 1rem;
  background-color: rgba(238, 102, 153, 0.9333333333);
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}
.btn:hover {
  background-color: #f6d;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  background-color: #f8fafc;
  color: #1e293b;
  font-family: "Arial", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: #1e293b;
}

.header {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 1rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__img {
  width: 100%;
  height: auto;
  max-width: 200px;
}
.header__nav li {
  display: block;
  width: 80px;
  float: left;
}
.header__nav li a {
  color: #fff;
  background: url(../imgs/blue1.png) repeat-x bottom;
  font-weight: bold;
  display: block;
  line-height: 1;
  padding: 6px 0;
  border-left: 1px solid #fff;
  text-align: center;
  text-decoration: none;
}
.header__nav li a:hover {
  background: #f6d;
}
.header__nav #current a {
  background: url(../imgs/blue2.png) repeat-x bottom;
  color: #55c;
}

.main {
  max-width: 1000px;
  width: 100%;
  margin: 40px auto;
  padding: 2rem;
}
.main__section {
  background-color: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.main__section h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #334155;
  padding-bottom: 10px;
  display: inline-block;
  border-bottom: 3px solid #3b82f6;
}
.main__section p {
  margin-top: 1rem;
  line-height: 1.6;
}
.main__section-item {
  margin-top: 2rem;
}
.main__section-item h3 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #3b82f6;
}
.main__section-item p {
  background: #f1f5f9;
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid #3b82f6;
}
.main__section-item button {
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background-color: rgba(238, 102, 153, 0.9333333333);
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}
.main__section-item button:hover {
  background-color: #f6d;
}

.footer {
  text-align: center;
  padding: 3rem 1rem;
  color: #1e293b;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .header {
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
  }
  .header__img {
    max-width: 150px;
  }
  .main {
    margin: 20px auto;
    padding: 1rem;
  }
  .main__section {
    padding: 1.5rem 1rem;
  }
  .main__section h2 {
    font-size: 1.5rem;
  }
}/*# sourceMappingURL=style.css.map */