@font-face {
  font-family: 'DejaVu Sans';
  src: url('fonts/DejaVuSans.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


body {
  background-color: white;
  font-family: 'DejaVu Sans', sans-serif;
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.image-box img {
  max-width: 300px;
  height: auto;
  image-rendering: pixelated;
}

.text-box {
  text-align: left;
}

.question {
  font-size: 18px;
  margin-bottom: 10px;
}

.answers {
  display: flex;
  gap: 20px;
}

.answer,
.answer a,
.answer a:visited {
  color: black;
  cursor: pointer;
  text-decoration: none !important;
}

.answer a:hover {
  text-decoration: underline;
}