@import url("https://fonts.googleapis.com/css2?family=Momo+Signature&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Share+Tech&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1);
}

html,
body,
main {
  height: 100%;
  width: 100%;
  background-color: #1d1d1d;
  overflow: hidden;
}

body {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

#name {
  font-size: 1rem;
  font-family: "Share Tech", sans-serif;
  display: block;
}

#next {
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: -1;
  background-color: rgba(29, 29, 29, 0.7215686275);
  display: flex;
  align-items: start;
  justify-content: start;
}

#bar {
  height: 2px;
  width: 0%;
  background-color: #008000;
  border-top-right-radius: 2rem;
  border-bottom-right-radius: 2rem;
}

.titel {
  font-size: 1.5rem;
  font-family: "Bebas Neue", sans-serif;
}

.progress-bar {
  height: 0.3rem;
  width: 100%;
  background-color: rgba(255, 255, 255, 0);
  padding: 0;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  gap: 0.7rem;
}

.right {
  height: 100%;
  width: 100%;
  background-color: #008000;
  border: none;
}

.wrong {
  height: 100%;
  width: 100%;
  background-color: #a50000;
  border: none;
}

.welcomeSection {
  height: 70vh;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  gap: 0.5rem;
  position: relative;
  margin: 0 auto;
}
.welcomeSection input {
  width: 100%;
  padding: 1rem;
  border-radius: 0.3rem;
  font-size: 1.5rem;
  background-color: transparent;
  outline: none;
  color: #fff;
  position: relative;
  z-index: 2;
  border: 2px solid #0015ff;
}
.welcomeSection input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.768627451);
}
.welcomeSection input::placeholder {
  color: rgba(255, 255, 255, 0.768627451);
}
.welcomeSection button {
  width: 100%;
  padding: 1rem 2rem;
  border-radius: 0.4rem;
  font-size: 1.5rem;
  position: relative;
  mix-blend-mode: color-dodge;
  z-index: 2;
  cursor: pointer;
}
.welcomeSection .g1 {
  height: 100%;
  width: 60%;
  background-color: rgba(0, 0, 255, 0.0823529412);
  position: absolute;
  top: 51%;
  right: 7%;
  filter: blur(100px);
  transform: translate(-50%, -50%);
  border-radius: 100%;
}

.up {
  animation: up_fade 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) both;
}
@keyframes up_fade {
  0% {
    transform: translateY(5rem);
  }
  100% {
    transform: translateY(0);
  }
}

.down {
  animation: down_fade 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) both;
}
@keyframes down_fade {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(5rem);
  }
}

.message {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 2rem 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-self: center;
  overflow: hidden;
}
.message .con {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.51rem;
  padding: 0.8rem 1.5rem;
  background-color: #fff;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
}
.message .loader-massage {
  width: 1rem;
  height: 1rem;
  border: 2px solid blue;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

header {
  margin-bottom: 5rem;
}
header nav {
  padding: 3rem 2rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #f4f2ed;
}
header nav h2 {
  font-family: "Outfit", sans-serif;
}
header nav p {
  font-size: 0.9rem;
  font-family: "Bebas Neue", sans-serif;
  display: flex;
  gap: 1rem;
}

#game-paly {
  padding: 0 3rem;
}
#game-paly #qustion-container {
  margin-top: 1rem;
  padding: 2rem 3rem;
  border-radius: 1rem;
  background-color: #121212;
  box-shadow: inset 0px 0px 23px 4px transparent;
}
#game-paly p {
  color: #f4f2ed;
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
  opacity: 80%;
}
#game-paly p p > span {
  padding: 0.3rem 0.5rem;
  background-color: #2b2929;
  border-radius: 0.2rem;
}
#game-paly p p > span span {
  padding-left: 0.2rem;
}
#game-paly h1 {
  font-size: 4rem;
  font-family: "Outfit", sans-serif;
  color: #f4f2ed;
}

#gameOver {
  height: 100vh;
  width: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  font-family: "Bebas Neue", sans-serif;
}
#gameOver .gritBox {
  border-radius: 16px;
  padding: 2rem 2rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.0588235294);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
          backdrop-filter: blur(10px) saturate(120%);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
#gameOver .gritBox h3 {
  margin-bottom: 0.75rem;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: #9aa7bf;
}
#gameOver .gritBox p {
  margin: 0;
  color: #9aa7bf;
  font-size: 1rem;
}
#gameOver .gritBox .content {
  display: flex;
  flex-direction: column;
}
#gameOver .gritBox #restartGame {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background-color: transparent;
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 0px 18px 1px rgba(30, 144, 255, 0.1411764706);
  transition: transform 0.18s cubic-bezier(0.2, 0.9, 0.3, 1), box-shadow 0.18s;
  align-self: center;
  justify-self: end;
  border: 1px solid rgba(30, 144, 255, 0.1803921569);
}
#gameOver .gritBox #restartGame:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(30, 144, 255, 0.1803921569);
}
#gameOver .gritBox #restartGame:active {
  transform: translateY(1px) scale(0.997);
}
#gameOver .gritBox .scoreBadge {
  display: inline-grid;
  grid-auto-flow: column;
  gap: 8px;
  align-items: center;
  padding: 6px 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.0196078431), rgba(255, 255, 255, 0.0117647059));
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.031372549);
  font-weight: 700;
  color: #1e90ff;
  margin-left: 6px;
}
#gameOver .gritBox .scoreBadge .tinyDot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: conic-gradient(from 120deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.2509803922));
  box-shadow: 0 3px 8px rgba(2, 6, 23, 0.6), inset 0 -2px 6px rgba(255, 255, 255, 0.0196078431);
}

#btn-container {
  display: flex;
  gap: 1rem;
  padding: 2rem 0;
}
#btn-container .btn {
  height: 6rem;
  width: 8rem;
  padding: 0 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  background-color: #0f0f0f;
  color: #f4f2ed;
  font-family: "Outfit", sans-serif;
  border-radius: 1rem;
  border: 1px solid #0f0f0f;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@media only screen and (min-width: 0px) and (max-width: 600px) {
  main {
    padding: 0 1rem;
  }
  main #game-paly {
    padding: 0rem;
  }
  main #game-paly #qustion-container {
    padding: 2rem;
  }
  main #game-paly header {
    margin: 1.2rem 0;
  }
  main #game-paly header nav {
    padding: 1rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #f4f2ed;
  }
  main #game-paly header nav h2 {
    font-family: "Outfit", sans-serif;
    font-size: 1.2rem;
  }
  main #game-paly header nav p {
    font-size: 0.7rem;
    font-family: "Bebas Neue", sans-serif;
    width: 50%;
  }
  main #qustion-container {
    margin-top: 1rem;
    padding: 1rem 3rem;
    border-radius: 1rem;
    background-color: #121212;
    box-shadow: inset 0px 0px 23px 4px transparent;
  }
  main #qustion-container p {
    color: #f4f2ed;
    font-family: "Outfit", sans-serif;
    text-transform: uppercase;
    opacity: 80%;
    font-size: 0.8rem;
    padding-bottom: 1rem;
  }
  main #qustion-container p span {
    padding: 0.3rem 0.5rem;
    background-color: #1a1a1a;
    border-radius: 0.2rem;
  }
  main #qustion-container p span span {
    padding-left: 0.2rem;
  }
  main #qustion-container h1 {
    font-size: 3rem;
    font-family: "Outfit", sans-serif;
    color: #f4f2ed;
  }
  main #btn-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
    padding: 2rem 0;
    margin: 0 auto;
  }
  main #btn-container .btn {
    height: 7rem;
    width: 100%;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    font-size: 1.5rem;
    background-color: #0f0f0f;
    color: #f4f2ed;
    font-family: "Outfit", sans-serif;
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  main #btn-container .btn:hover {
    border: 1px solid #4169e1;
    transform: scale(1.02);
  }
  main #btn-container .btn:active {
    border: 2px solid #6b6b6b;
  }
  main .welcomeSection {
    height: 70vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    gap: 1rem;
    position: relative;
    padding: 0 1rem;
  }
  main .welcomeSection input {
    width: 100%;
    padding: 1rem;
    border-radius: 0.3rem;
    font-size: 1.2rem;
    background-color: transparent;
    outline: none;
    color: #fff;
    position: relative;
    z-index: 2;
    border: 2px solid #0015ff;
    mix-blend-mode: lighten;
  }
  main .welcomeSection input::-moz-placeholder {
    color: rgba(255, 255, 255, 0.768627451);
  }
  main .welcomeSection input::placeholder {
    color: rgba(255, 255, 255, 0.768627451);
  }
  main .welcomeSection button {
    width: 100%;
    padding: 0.8rem 2rem;
    border-radius: 0.4rem;
    font-size: 1.2rem;
    position: relative;
    mix-blend-mode: color-dodge;
    z-index: 7;
    cursor: pointer;
  }
  main .welcomeSection .g1 {
    height: 20%;
    width: 60%;
    background-color: blue;
    position: absolute;
    top: 58%;
    left: -42%;
    filter: blur(50px);
    transform: translate(-50%, -50%);
  }
  main #gameOver .gritBox {
    padding: 2rem 1.2rem 1rem;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 0.2fr;
    gap: 1.2rem;
  }
}/*# sourceMappingURL=style.css.map */