html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  /* outline: 2px solid red; */
  box-sizing: inherit;
  margin: 0;
}

.body {
  background: #eee;
  font-family: "Times New Roman", serif;
}

.title {
  text-align: center;
  margin: 200px 250px 5px;
  font-size: 80px;
}

.card-section {
  display: flex;
  justify-content: center;
  background: #b2e0b2;
  margin: 0px 250px 200px;
  padding: 50px;
}

.card-container {
  background: #e3f4ff;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 20px; /* Okay */
  margin: 0px 10px 0px;
  width: 250px;
  border-radius: 5px;
  transition: transform 0.2s; /*hover*/
}

.card-section a:hover {
  color: rgb(118, 120, 236);
}

.card-container:hover {
  transform: scale(1.05); /* Slightly enlarge on hover */
}
.card-content {
  border-radius: 5px;
  width: 100%;
  height: 300px;
}

.selection-image {
  width: 100%; /* Make image responsive */
  height: 18vh; /* Maintain aspect ratio using the vh viewport height */
  border-radius: 5px; /* Rounded corners for the image */
}

.card-content h2 {
  font-size: 1.5em; /* Double size the base font size */
  margin: 18px 18px;
}

.card-section a {
  text-decoration: none; /* To remove the link underline */
  color: black;
}
