/* 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." */

/* Create three equal columns that floats next to each other */
* {
  box-sizing: border-box;
}

.title-container {
  display: flex;
}

.navbar a {
  text-decoration: none;
  color: purple;
}

.column3 {
  float: left;
  width: 33.33%;
  padding: 10px 10px;
  height: 90vh; /* Should be removed. Only for demonstration */
  background-color: rgb(20, 143, 20);
  border: 1px solid black;
  /* margin: 1px; */
}

.column-full {
  float: left;
  width: 100.0%;
  padding: 10px 10px;
  height: 10px; /* Should be removed. Only for demonstration */
  background-color: rgb(20, 143, 20);
  border: 1px solid black;
  margin: 1px;
}

.column10 {
  float: left;
  width: 10%;
  padding: 10px 10px;
  height: 300px; /* Should be removed. Only for demonstration */
  background-color: #018d24;
}

.column_center {
  float: left;
  width: 80%;
  padding: 10px 10px;
  height: 300px; /* Should be removed. Only for demonstration */
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
} 

body {
  background-color: white;
  color: black;
  font-family: Verdana;
}

.grid-container {
  display: grid;
  grid-template-columns: auto auto auto auto auto;
  grid-gap: 10px;
  background-color: #2196F3;
  padding: 10px;
}

.grid-container > div {
  background-color: rgba(255, 255, 255, 0.8);
  text-align: center;
  padding: 20px 0;
  font-size: 30px;
}

#img-label {
  font-family: monospace;
  font-size: 20px;
}

#center {
  grid-column: 2 / span 3
}



.grid-container img {
  width: 95%;
  object-fit: cover;
}

ul, li {
  padding-inline-start: 20px; /* Adjust the value as needed */
}