@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600;700&family=Kavoon&family=Poppins:wght@300;400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "JetBrains Mono", monospace;
}

body {
  background-image: linear-gradient(#181726 55%, #461e48);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.page-container {
  height: 100vh;
  width: 100vw;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.page-container h1 {
  font-family: "Press Start 2P", system-ui;
  color: #e406f4;
}
.page-container > h1 {
  font-size: 50px;
  margin-bottom: 60px;
}

.show-page {
  display: flex;
}

button {
  padding: 8px 16px;
  margin: 8px;
  cursor: pointer;
  transition: 0.4s;
  background-color: #181726;
}

.pink {
  border: 2px solid #e406f4;
  color: #e582ec;
  box-shadow: 0 0 5px 2px #e406f4;
}
.pink:hover {
  color: #181726;
  background-color: #e406f4;
}

.blue {
  border: 2px solid #1585ee;
  color: #1585ee;
  box-shadow: 0 0 5px 2px #1585ee;
}
.blue:hover {
  color: #181726;
  background-color: #1585ee;
}

.menu-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 2px solid #e406f4;
  padding: 50px 40px;
  box-shadow: 0 0 10px 5px #e406f4;
}
.menu-container > h1 {
  margin-bottom: 20px;
}

.select-test-container {
  display: flex;
}

.test-container {
  background-color: #181726;
}
.test-container p {
  padding: 15px 20px;
  border: 2px solid #e406f4;
  box-shadow: 0 0 5px 2px #e406f4;
  color: #4ef1a3;
  width: 700px;
  height: 300px;
}
.test-container div {
  display: flex;
  justify-content: center;
}
.test-container div button {
  margin: 20px;
}

.test-buttons-container {
  margin-right: 20px;
  display: flex;
  flex-direction: column;
}

.test-section-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.selected-test-container {
  margin: 20px 0;
  border: 2px solid #e406f4;
  box-shadow: 0 0 5px 2px #e406f4;
  display: flex;
  flex-direction: column;
  width: 900px;
  align-items: center;
}
.selected-test-container button {
  flex-grow: 0;
}
.selected-test-container p {
  margin: 20px;
  color: #e406f4;
}
.selected-test-container p .correct {
  color: green;
}
.selected-test-container p .corrected {
  color: orange;
}
.selected-test-container p .incorrect {
  color: red;
}
.selected-test-container textarea {
  resize: none;
  width: 90%;
  height: 160px;
  margin: 20px;
  font-size: 16px;
  background-color: rgba(102, 175, 243, 0.3411764706);
  overflow: auto;
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border: none;
  color: white;
  padding: 10px;
}

.statistic-container {
  width: 100%;
  display: flex;
}
.statistic-container p {
  margin: 0;
  padding: 10px 0;
  text-align: center;
  display: block;
  flex-grow: 1;
  border-top: 2px solid #e406f4;
  border-right: 2px solid #e406f4;
  color: #4ef1a3;
}
.statistic-container p:nth-child(5) {
  border-right: none;
}

.score-board-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.score-board-container table {
  border: 2px solid #e406f4;
  box-shadow: 0 0 5px 2px #e406f4;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.score-board-container table tr th {
  border: 2px solid #e406f4;
  padding: 10px 20px;
  color: #4ef1a3;
}

.popup-background {
  display: none;
  background-color: rgba(94, 94, 94, 0.603);
  position: fixed;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100vw;
  z-index: 2;
}

.popup {
  background-color: #181726;
  padding: 60px 140px;
  border: 2px solid #e406f4;
  box-shadow: 0 0 5px 2px #e406f4;
  display: flex;
  flex-direction: column;
}
.popup h1 {
  color: #e406f4;
  font-family: "Press Start 2P", system-ui;
}
.popup input {
  margin: 14px 0;
  background-color: rgba(102, 175, 243, 0.3411764706);
  overflow: auto;
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border: none;
  color: white;
  padding: 10px;
  font-size: 16px;
}
.popup p {
  color: #e406f4;
}
.popup button {
  margin-top: 16px;
}

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