/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: #EEEAD6;
  color: black;
  font-family: Tahoma;
}
h1 {
  font-family: "MS Trebuchet";
  font-weight: bold;
}

.links {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* two equal columns */
  gap: 10px; /* space between columns and rows */
}

.links p {
  margin: 0; /* optional, keeps spacing consistent */
}

.grid {
  max-width: 100%;
  margin: auto;
}

.grid-item {
  width: 400px;
  margin-bottom: 10px;
}

.grid-item img {
  width: 100%;
  height: auto;
  display: block;
}

.grid-item.landscape {
  width: 600px;
}

.grid-item.portrait {
  width: 400px;
}