/* class for items in the navigation bar (top-right) with home, login, signup, etc */
.navbar-item {
  text-decoration: none;
  color: #fff;
  padding-left: 0.6em;
  padding-right: 0.6em;
  display: inline-block;
  text-align: center;
  line-height: 50px;
}

.navbar-item:hover {
  background-color: #00b89c;
}

.navbar-item {
  text-decoration: none;
  color: #fff;
  padding-left: 0.6em;
  padding-right: 0.6em;
  display: inline-block;
  text-align: center;
  font-size: 13px;
}

.button-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}

.imgbutton {
  flex: 1 1 calc(50% - 20px);
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  font-weight: bold;
  margin: 10px;
  font-size: 20px;
  text-align: center;
  text-decoration: none;
  color: #000;
  background: rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.imgbutton:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .index_img {
    max-width: 150px;
  }
}

.index_img {
  width: 100%;
  height: auto;
}
