/* ========Reset======== */

@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: #fffdd0;
  background-color: #022b3a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;

  font-family: "Roboto", "sans-serif";
}

img {
  width: 50px;
  height: 50px;
}
/* =======Buttons======= */
.btn {
  background-color: #cdd1de;
  border: none;

  border-radius: 50%;
  padding: 18px;
  cursor: pointer;
} /* 
=======heading======== */
.heading {
  width: 100%;
  background-color: #e1e5f2;
  padding: 8px 0px;
}
h1 {
  color: #404e4d;
  font-weight: 900;
  text-align: center;
  font-size: 40px;
  /*   border: 3px solid red; */
}
.container {
  /*  border: 2px solid yellow; */
  /*   min-height: 100vh; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* =====result container===== */

.result-container {
  background-color: #1f7a8c;
  /*  border: 2px solid red */
  display: flex;
  flex-direction: column;
  width: 400px;
  padding: 16px 8px;
  gap: 20px;
  border-radius: 12px;
}

.result-container p {
  font-size: 24px;
}
span {
  font-weight: bold;
}

/* ======moves====== */
.outcome {
  display: flex;
  flex-direction: column;
}
.moves-container {
  display: flex;
  justify-content: center;
  align-items: center;

  padding: 24px 20px;
  font-size: 18px;
  display: flex;
  background-color: transparent;
  gap: 15px;
}

.outcome {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

.outcome {
  margin-top: 20px;
}

.moves,
.result-container {
  display: none;
}

.reset-btn {
  cursor: pointer;
  border-radius: 8px;
  border: none;
  display: none;
  color: wheat;
  padding: 18px 48px;
  font-size: 18px;
  font-weight: bold;
  background-color: #1f7a8c;
}
