body {
  font-weight:700;
  color: orange;
  font-family: 'Arial', sans-serif;
}

h3 {
  font-weight:400;
  color: black;
  font-family: 'Arial', sans-serif;
  text-align: left;
  Font-size: 25px
}
h1 {
  font-size: 2rem;
  color: white;
  font-family: TIMES;
  font-weight:600;
  font-style: normal;
  letter-spacing:.25rem;
  text-align: left;
  line-height: min(5vw, 40px);
}

h2 {
  font-size: 2rem;
  color: white;
  font-family: TIMES;
  font-weight:600;
  font-style: normal;
  letter-spacing:.25rem;
  text-align: center;
  line-height: min(5vw, 40px);
}

image-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}


img {
   width: 20rem;
  height: 20rem;
  margin-top:2rem;
}

body {
  background-image: url('bass.png');
  background-color: rgba(255, 0, 0, 0.1);
 background-blend-mode: lighten; 
  background-position: top;
  /* Always provide a background color in case the image fails to load */
  background-attachment: scroll;
  background-size: 40vh;
  background-repeat: repeat;
}
/* Style for the text underneath each image */
.card-text {
  text-align: center;
  color: orange; /* Change to #000 if your background is white */
  font-family: sans-serif;
  font-size: 1rem;
  margin-top: 8px; /* Spaces text away from the image */
  margin-bottom: 15px; /* Spaces this card away from rows below it */
}

/* Fixes card behavior during hover effects */
.grid-card {
  display: flex;
  flex-direction: column;
  overflow: hidden; 
}