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

.centered {
  display: flex;
  justify-content: center; /* horizontal */
  align-items: center;     /* vertical */
}

.container {
  display: flex;
  align-items: center; /* vertically centers items */
  gap: 20px; /* space between image and text */
}

.indexContainer {
  display: flex;
  align-items: center; /* vertically centers items */
  gap: 20px; /* space between image and text */
  background-color: #998c59
}

/*this is the area for button links */
.button-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #706742;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.button-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  background-color: #655d3b;
}
