#loadUserCardsForm {
  text-align: center;
}


.user-cards__header {
  text-align: center;
  margin-top: 50px;
  font-size: 40px;
  font-family: Arial, sans-serif;
  font-weight: bold;
}

.user-cards {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 1rem;
  padding: 20px;
  max-width: 600px;
  margin: 1rem auto;
}

.card__expand__container{
  text-align: center;
  margin-top: 10px;
}

.card__expand {
  border-bottom: 1px dotted black;
}

.card__expand:active {
  border-bottom: 1px dotted red;
  color:red;
}

/*
@media (max-width: 1000px) {
  .user-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (max-width: 700px) {
  .user-cards {
    grid-template-columns: repeat(1, 1fr);
  }
}*/


.card {
  border: none;
  border-radius: .5rem;
  padding: 2rem;
  background-color: rgb(249, 248, 241);
  margin-bottom: 2rem;
}

.card_hidden {
  background-color: #ccc;
}

.card__code {
  text-align: center;
  color: rgb(91, 162, 191);
  margin-bottom: 10px;
}

.card__name {
  margin-bottom: 20px;
  font-family: Georgia, serif;
  font-size: 25px;
  text-align: center;
}

.card__notes {
  line-height: 1.5;
  font-family: Arial, sans-serif;
  font-size: 16px;
}


.card__img {
  max-width: 100%;
  max-height: 500px;
  text-align: center;
  margin: 0 auto;
}

.card__is-hidden {
  margin-top: 20px;
}

.classone{
  background-color: yellow;
}

.big{
  font-size: 110%;
}