body,
h1,
h2,
p,
ul,
table {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #261901;
  padding: 20px;
}

p {
  font-family: "Allerta Stencil", sans-serif;
  color: #ffff;
}

h1 {
  font-family: "Black Ops One", sans-serif;
  font-size: 4em;
  color: #465932;
  margin-bottom: 10px;
  text-align: center;
}

h2 {
  font-family: "Black Ops One", sans-serif;
  font-size: 3em;
  color: #603127;
  margin-top: 20px;
  margin-bottom: 10px;
  text-align: center;
}

.info-card {
  background-color: #a6a15d;
  border: 6px solid #603127;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

figure {
  margin: 0;
  text-align: center;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

figcaption {
  font-family: "Courier Prime", monospace;
  font-style: italic;
  color: #ffff;
  margin-top: 20px;
  margin-bottom: 20px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: auto;
  margin-bottom: auto;
  margin-left: auto;
  margin-right: auto;
}

th,
td {
  font-family: "Allerta Stencil", sans-serif;
  padding: 10px;
  border: 1px solid #ddd;
  text-align: center;
}

th {
  font-family: "Black Ops One", sans-serif;
  background-color: #261901;
  font-style: none;
  font-size: 1.5em;
  color: #a6a15d;
}

tr {
  background-color: #f4f4f4;
}

.bullet-points {
  margin-top: 20px;
}

ul {
  font-family: "Allerta Stencil", sans-serif;
  list-style-type: disc;
  padding-left: 20px;
  color: #ffff;
}

form {
  font-family: "Courier Prime", monospace;
  color:  #ffff;
  margin-top: 20px;
  padding: 15px;
  background-color:  #261901;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

form p {
  font-family: "Allerta Stencil", sans-serif;
  margin-bottom: 10px;
}

input[type="radio"] {
  margin-right: 10px;
}

label {
  margin-right: 20px;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; 
}

/* Media query for screens smaller than 600px */
@media (max-width: 600px) {
  h1 {
    font-size: 2.5em; 
  }

  h2 {
    font-size: 2em; 
  }

  .info-card {
    padding: 10px; 
  }

  table {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }

  th,
  td {
    font-size: 0.9em; 
  }

  .bullet-points {
    margin-top: 10px; 
  }

  form {
    padding: 10px; 
  }

  .grid-container {
    grid-template-columns: 1fr; 
  }
}
