header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
}

h1 {
  text-align: center;
  font-size: clamp(36px, 8vw, 84px);
  color: orange;
  font-family: 'Courier New', Courier, monospace;
  z-index: 0;
  margin: 0;
  text-shadow: 2px 2px darkslategrey, -2px 2px darkslategrey, 2px -2px darkslategrey, -2px -2px darkslategrey;}

#archive-button {
    background-color: purple;
    color: white;
    padding: 10px 20px;
    margin-right: auto;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 32px;
    transition: 0.2s;
    flex-shrink: 0;
    z-index: 1;
}

#archive-button:hover {
    background-color: blue;
}

body {
    background-color: darkslategrey;
    padding-top: 40px;
}

div {
    color: white;
    font-family: sans-serif;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 20px;
    font-size: 36px;
    font-weight: bold;
}

#options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

#options .option-button {
  background-color: beige;
  padding: clamp(10px, 5vw, 50px) clamp(20px, 10vw, 100px);
  font-size: 32px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  color: black;
  transition: 0.2s;
}

#options .option-button:hover {
  background-color: grey;
}

#options .option-button.correct {
  background-color: green !important;
  color: white !important;
}

#options .option-button.wrong {
  background-color: darkred !important;
  color: white !important;
}

#options .option-button.disabled {
  cursor: not-allowed;
}

#archive-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    justify-items: center;
    margin: 20px 0;
}

#archive-list a {
  background-color: beige;
  padding: clamp(10px, 5vw, 50px) clamp(20px, 10vw, 200px);
  margin: 5px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-size: clamp(16px, 3vw, 32px);;
  color: black;
  transition: 0.2s;
}

#archive-list a:hover {
    background-color: grey;
}

p {
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
    margin-top: 20px;
    font-size: 24px;
}

#result {
    color: orange;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    font-size: 48px;
}

#correctCount{
    color: lightgreen;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
}

#incorrectCount{
    color: red;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
}

.emoji {
    position: absolute;
    right: 10px;
    width: 150px;
    height: auto;
    z-index: -1;
}