/* Start global rules */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  font-family: "cairo", sans-serif;
  background-color: var(--main-bg);
}
:root {
  --main-bg: #0d1117;
  --second-bg: #1d1d1e;
  border-radius: 6px;
}
/* end global rules  */
.app {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.title h1 {
  text-align: center;
  background-image: linear-gradient(90deg, #4ca5ff 2.34%, #b673f8 100.78%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.app .container {
  max-width: 700px;
  width: 600px;
  background-color: var(--second-bg);
  padding: 50px;
  border-radius: 6px;
}
.inputs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.inputs input {
  width: 45px;
  height: 35px;
  margin: 10px 0px;
  outline: none;
  border: none;
  border-radius: 6px;
  color: aqua;
  text-align: center;
  font-size: 20px;
}
.info p {
  color: #ddd;
  text-align: center;
  margin-bottom: 15px;
}

.container button {
  background-image: linear-gradient(90deg, #4ca5ff 2.34%, #b673f8 100.78%);
  width: 100%;
  padding: 10px 0px;
  color: var(--mainColor);
  cursor: pointer;
  font-weight: bold;
  border-radius: 6px;
  position: relative;
  z-index: 9999;
}

:where(input, button) {
  border-width: 0;
  outline-width: 0;
}
.none {
  opacity: 0;
  position: absolute;
  inset: 0;
}
.winner {
  position: absolute;
  left: 30%;
}
.hidden {
  display: none;
}
