body {
  font-family: "Segoe UI", sans-serif;
  padding: 0 1rem;
  line-height: 1.6;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  height: 100vh;
  margin: 0;
  background-color: lightgray;
}

h1 {
  font-size: 1.8rem;
  margin: 0;
  padding-bottom: 0;
  text-align: center;
}

.content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-top: 32px;
  margin-bottom: 32px;
  gap: 32px;
}

.box {
  box-sizing: border-box;
  height: 300px;
  width: 300px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: lightyellow;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
li {
}
a {
  text-decoration: none;
  font-size: 1.2rem;
  color: blue;
}
a:hover {
  text-decoration: underline;
}

h3 {
  margin: 0;
  padding: 0;
  text-align: center;
}

.full-comparisons {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}