@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
  font-family: 'Poppins', sans-serif;
}

nav {
  background-color: #f0f0f0;
  padding: 10px;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1 {
    font-size: 1rem;
    text-align: center;
}

nav li {
  display: inline-block;
  margin-right: 20px;
}

header {
  text-align: center;
  padding: 20px;
}

.question {
  margin-bottom: 20px;
  text-align: center;
  opacity: 0.4; 
}

.question.active {
  opacity: 1; 
}

.question label {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}

.question button {
  background-color: #ddd;
  padding: 10px 20px;
  border: none;
  margin: 0 5px;
  cursor: pointer;
  width: 150px;
  height: 150px;
  border-radius: 10px;
  color: white;
  font-size: 20px;
  display: inline-block;
  opacity: 0.4; 
}

.question.active button {
  opacity: 1;
}

.question button:first-of-type {
  background-color: #7DD8FF;
}

.question button:last-of-type {
  background-color: #FE6D00;
}

#carimg { 
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 300px; 
}