h1 {
  color: #000000;
  font-size:34px;
}

h2 {
color: #ff0000;
}


a:link {
  text-decoration: none;
  font-size:20px;
}

.item-image img {
    max-width: 220px;
    max-height: 220px;
    border: none;
}

.contact h2, .contact .page-header h1 {
    color: #000000;
}

.header {
    background-image: url('https://916groove.com/images/headers/Gemini_Generated_Image_2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.com-content.view-category .blog-items {
    display: flex;
    flex-wrap: wrap; /* Allows items to wrap to next line if necessary */
    gap: 20px; /* Space between items */
}

/* Adjust individual items to fit in the row */
.com-content.view-category .blog-items .item {
    flex: 1 1 100%; /* Adjust 30% to change width of columns */
    min-width: 250px;
    height: 400px;
 /* Prevents items from getting too small */
}

/* Make images responsive */
.com-content.view-category .item-image img {
    width: 100%;
    height: auto;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
}

/* Styling the container */
.readmore {
    margin-top: 10px;
    text-align: center;
}

/* Styling the actual link/button */
.readmore a.btn, 
.readmore a.readon {
    background-color: #fffff;
    color: #00000;
    padding: 10px 20px;
    border-radius: none;
    border: none;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

/* Hover effect */
.readmore a.btn:hover, 
.readmore a.readon:hover {
    background-color: #0056b3;
    color: #ffffff;
}

    
}



/* Target the blog intro article container */
.blog-items .blog-item {
    height: 300px;
    display: flex;
    flex-direction: column;
}