html, body {
  font-family: "Roboto Mono", sans-serif;
  background-color: #33101A;
}

/* Style the quiz container */
#wrapper {
  max-width: 600px;
  margin: 50px auto;
  padding: 30px;
  background-color: #CCB397;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Style the quiz title */
h1 {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
}

/* Style the scenario titles*/
h3 {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 30px;
}

/* Style the question */
p {
  font-size: 20px;
  margin-bottom: 20px;
}

/* Style the answer options */
a:link, a:visited {
  font-size: 17px;
  margin-bottom: 30px;
  color: #33101A;
  text-decoration: none;
}

a:active, a:hover{
  color: #4A6151;
  background-color: none;
  text-decoration: underline;
}

/* Style the options */
.link3:link, .link3:visited {
  display: block;
  color: #95C4A3;
  text-decoration: none;
  padding: 10px;
  background-color: #595856;
  border: 1px solid #ddd;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.link3:active, .link3:hover {
  color: #9B978B;
  background-color: #33101A;
  text-decoration: none;
}

/* Style the describe button*/
.link2:link, .link2:visited {
  width: 100%;
  text-decoration: none;
  color: #4A6151;
  font-size: 20px;
  cursor: pointer;
}

.link2:active .link2:hover {
  background-color: none;
  text-decoration: underline;
}

/* Style the back button */
.link1:link, .link1:visited {
  display: block;
  text-decoration: none;
  width: 100%;
  padding: 10px;
  background-color: #33101A;
  color: #4A6151;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.link1:active, .link1:hover {
  background-color: #4A6151;
  color: #33101A;
}


#imageGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
}
        
#imageGrid img {
  max-width: 100%;
  height: auto;
}