/* 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: white;
  color: black;
  font-family: Verdana;
}
**/

/* =========================
   Basic page styles
   ========================= */

body {
  background-color: lightskyblue;
  color: #ddd;
  font-family: Arial, sans-serif;
  max-width: 800px;
  margin: 0 0 0 40px;
  padding: 40px 20px;
  line-height: 1.6;
  /*background-image: url("pinklain2.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  */
}


/* =========================
   Headings
   ========================= */

h1 {
  color: forestgreen;
  /*color: #fff;*/
  font-size: 32px;
  margin-bottom: 30px;
}


/* =========================
   Links
   ========================= */

a {
  color: #8ab4f8;
  text-decoration: none;
}

a:hover {
  /*color: red;*/
  color: #fff;
  text-decoration: underline;
}


/* =========================
   Profile categories
   ========================= */

p {
  color: #fff;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 5px;
}


/* =========================
   Lists
   ========================= */

ul {
  margin-top: 5px;
  padding-left: 25px;
}

li {
  margin-bottom: 5px;
}


.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  max-width: 1000px;   /* or whatever width you want, way bigger than 800px */
  width: 90vw;         /* scales with the browser window */
}

.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;   /* keeps thumbnails square */
  object-fit: cover;     /* crops nicely instead of stretching */
}
