@charset "UTF-8";
/*mixins*/
/* GENEREL STYLING */
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Courier New", monospace;
  background-color: #0a0a0a;
  color: #00ff00;
}

h1 {
  font-family: "Courier New", monospace;
  font-weight: 300;
  text-align: center;
  padding: 1rem;
  color: #39ff14;
  text-shadow: 0 0 5px #39ff14;
  font-size: 2.3em;
}

h2 {
  font-family: "Courier New", monospace;
  font-weight: 300;
  text-align: center;
  padding: 1rem;
  color: #39ff14;
  text-shadow: 0 0 5px #39ff14;
  font-size: 1.8em;
}

h3, h4, h5, h6 {
  font-family: "Courier New", monospace;
  font-weight: 300;
  text-align: center;
  padding: 1rem;
  color: #39ff14;
  text-shadow: 0 0 5px #39ff14;
  font-size: 1.3em;
}

p {
  margin-left: 10%;
  margin-right: 10%;
}

.brodtekst {
  padding: 1rem;
}

/* HEADER/NAVIGATION STYLING */
nav {
  display: flex;
  justify-content: flex-start;
}
nav a {
  text-decoration: none;
  font-size: 2em;
  font-family: "Courier New", monospace;
  font-weight: bold;
  margin-left: 2%;
  margin-top: 2%;
  color: #00ff00;
  text-shadow: 0 0 5px #00ff00;
}

/* Quiz */
.screen {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding: 2rem;
}

.quiz-container {
  background-color: #0a0a0a;
  border: 1px solid #00ff00;
  border-radius: 12px;
  box-shadow: 0 0 10px #00ff00;
  display: flex;
  flex-direction: row;
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
  margin: 0;
  font-family: sans-serif;
}

.interaction-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#choices {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#feedback {
  background-color: #0a0a0a;
  border: 1px solid #00ff00;
  border-radius: 8px;
  box-shadow: 0 0 10px #00ff00;
  display: flex;
  text-align: center;
  font-size: 1.2rem;
  padding: 1rem;
  color: #39ff14;
  border-radius: 8px;
  margin-top: 1rem;
}

.feedback p {
  margin-bottom: 8%;
}

.wrong {
  color: red;
}

/* Knapper */
.btn-scenario {
  background-color: #0a0a0a;
  color: #00ff00;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  text-shadow: 0 0 5px #0a0a0a;
  font-size: 1rem;
  margin: 0.5rem 0;
  border: 1px solid #00ff00;
  text-shadow: 0 0 3px #00ff00;
}
.btn-scenario:hover {
  background-color: black;
  box-shadow: 0 0 10px #0a0a0a;
}

.btn-scenario:hover {
  background-color: #003300;
  box-shadow: 0 0 10px #00ff00;
}

.read-btn {
  background-color: darkgreen;
  color: #fff;
  padding: 0.8rem;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  text-shadow: 0 0 5px darkgreen;
  text-decoration: none;
  text-align: center;
  width: 70vw;
  display: block;
  margin: 0 auto 1.5em auto;
}
.read-btn:hover {
  background-color: #003100;
  box-shadow: 0 0 10px darkgreen;
}

#restartBtn {
  background-color: #2196f3;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  text-shadow: 0 0 5px #2196f3;
}
#restartBtn:hover {
  background-color: #0c7cd5;
  box-shadow: 0 0 10px #2196f3;
}

/* Scenarios */
.scenario-description {
  display: flex;
  flex-direction: column;
}

.scenario-description p {
  margin-bottom: 8%;
}

.hidden {
  display: none;
}

/* E-mail */
.email-screen {
  background-color: #e5e7eb;
  border: 1px solid #00ff00;
  border-radius: 20px;
  box-shadow: 0 0 10px #00ff00;
  width: 90%;
  max-width: 260px;
  aspect-ratio: 1/2;
  color: black;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-family: Arial, sans-serif;
  margin: 2rem auto;
}

.email-top-bar,
.email-bottom-bar {
  background-color: #e5e7eb;
  padding: 10px;
  text-align: center;
  font-weight: bold;
  border-radius: 20px 20px 0 0;
}

.email-bottom-bar {
  border-radius: 0 0 20px 20px;
  height: 40px;
}

.email-nav {
  display: flex;
  justify-content: space-around;
  padding: 10px;
  font-weight: bold;
  font-size: 0.85rem;
}
.email-nav span {
  color: #555;
  cursor: default;
}
.email-nav .active-tab {
  text-decoration: underline;
  color: black;
}

.divider {
  border: none;
  border-bottom: 1px solid #ccc;
  margin: 0 10px;
}

.email-headers {
  padding: 10px;
  font-size: 0.8rem;
  color: #333;
  line-height: 1.4;
}

.email-body {
  padding: 10px;
  font-size: 0.85rem;
  color: black;
  overflow-y: auto;
  flex-grow: 1;
}
.email-body a {
  color: #2563eb;
  text-decoration: underline;
}

/* Lær mere siden */
.container {
  background-color: #0a0a0a;
  border: 1px solid #00ff00;
  border-radius: 12px;
  box-shadow: 0 0 10px #00ff00;
  max-width: 70%;
  margin: 5% auto;
  padding: 2rem;
  font-size: 1.2em;
}
.container h1 {
  font-family: "Courier New", monospace;
  font-weight: 300;
  text-align: center;
  padding: 1rem;
  color: #00ff00;
  text-shadow: 0 0 5px #00ff00;
  font-size: 2.3em;
}
.container h2 {
  font-family: "Courier New", monospace;
  font-weight: 300;
  text-align: center;
  padding: 1rem;
  color: #00ff00;
  text-shadow: 0 0 5px #00ff00;
  font-size: 1.8em;
}
.container ul {
  padding-left: 1.5rem;
  margin-left: 10%;
  margin-right: 10%;
}
.container p {
  margin-bottom: 1em;
}
.container section {
  margin-bottom: 2em;
}

.back-button {
  position: fixed;
  top: 1rem;
  left: 1rem;
  background-color: #0a0a0a;
  color: #00ff00;
  box-shadow: 0 2px 6px #00ff00;
  padding: 0.6em 1em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
}

.emoji {
  font-size: 1.3em;
  margin-right: 0.4em;
}

/* Responsivitet */
@media (max-width: 768px) {
  .quiz-container {
    flex-direction: column;
    align-items: center;
  }
  .interaction-area {
    width: 100%;
    align-items: center;
  }
  #choices {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }
  .container {
    max-width: 90%;
  }
}/*# sourceMappingURL=style.css.map */