/* CARD_STYLES.CSS */
.flex-card-container {
  display: flex;

  flex-flow: row wrap;

   row-gap: 50px;

  /* place-content: center; */
  /* place-content: start;
  align-items: flex-start; */
  justify-content: space-evenly;

  width: 98%;
  /* height: 90vh; */
  /* max-width: 60rem; */
  border: 5px solid #000;
  padding: 2em;
  background-color: #F0E7D6;
}
.flex-manage_card-container {
  display: flex;

  flex-flow: row wrap;

  /* place-content: center; */
  /* place-content: start;
  align-items: flex-start; */
  justify-content: space-evenly;

  width: 98%;
  /* height: 90vh; */
  /* max-width: 60rem; */
  border: 5px solid #000;
  padding: 2em;
  background-color: #F0E7D6;
}

.flex-item {
  margin: 0.5rem;
  border: 5px solid #aaa;
  background-color: #000;
  color: #fff;
  padding: 0.5em;
  width: 350px;
}
.flex-item_1 {
  display: flex;
  flex-direction: column;
  Justify-content: center;
  align-items: center;
  margin: 0.5rem;
  border: 2px solid #000;
  box-shadow: 3px 3px 5px #999;
  background-color: #fff;
  color: #000;
  padding: 0.5em;
  width: 380px;
}
.flex-item_2 {
  /* display: flex;
  flex-direction: column;
  Justify-content: center;
  align-items: center;
  margin: 0.5rem;
  border: 2px solid #000;
  box-shadow: 3px 3px 5px #999;
  background-color: #fff;
  color: #000;
  padding: 0.5em; */
  width: 500px;
}
.image-style {
width: 90%;
border: 2px solid #000;
/* object-fit: cover;
border-top-left-radius: 10px;
border-top-right-radius: 10px; */
}
.link-style {
  color: rgb(99, 99, 228);
  text-decoration: none;
  cursor:pointer;
}
.link-style_land {
  color: white;
  text-decoration: none;
  cursor:pointer;
}