

:root{
--primary: #929664;;
--dark: #44486b;
--medium: #c1bb32;
--gold: #c58a22;
--light: #b3ccc6;
--green: #39411c;
--shadow: 3px 3px 5px #58580E;

}


body {
font-family: 'Jura', sans-serif;
font-size: 18px;
color: #171701;
}

h1{

    border-radius: 5px;
    text-align: center;
    }
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px;
    background-color: #bacad4;
  }

  .item {
    width: calc(16.66% - 10px);
    height: calc(5% - 10px);
    
    margin-bottom: 10px;
    border-top: 2px solid rgb(7, 51, 9);
    box-sizing: border-box;
  }
  .head {
    width: 100%;
    height: calc(5% - 10px);
    background-color: #bacad4;
    margin-bottom: 10px;
    box-sizing: border-box;
  }
#header{
 font-weight: bold; 
 background-color: var(--primary);  
}
  @media screen and (max-width: 768px) {
    .container {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-gap: 10px;
    }

    .item {
      width: 100%;
    }
  }
a{
color: var(--green);
text-decoration: none;
}
a:hover{
	background: var(--gold);
	}



 /* CSS for search bar */
 #search-container {
    margin-bottom: 20px;
    align-self: flex-end;
}

#search-input {
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
    width: 200px;
    margin-right: 5px;
}

#search-button {
    padding: 6px 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

#search-button:hover {
    background-color: #0056b3;
}
/* CSS for highlighting */
.highlight {
    background-color: yellow;
}