* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
h1 {
  margin: 15px;
}
body {
  width: 100svw;
  height: 100svh;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  background-color: brown;
}
.linkStyle {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  margin-top: 5px;
  margin-right: 5px;
  background-color: rgb(200, 97, 7);
  color: rgb(240, 238, 238);
}
.buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
}
#txt-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  max-width: 90%;
  text-align: center;
  flex-wrap: wrap;
}
header {
  display: flex;
  flex-direction: row;
  height: 10%;
  width: 80%;
  justify-content: center;
  align-items: center;
}
.monsterimg {
  aspect-ratio: 1/1;
  /* max-width: 95%;
  max-height: 40%; */
  width: 40%;
  height: auto;
}
.monsterimgsearch {
  aspect-ratio: 1/1;
  width: 50%;
  height: auto;
  object-fit: contain; /* or 'cover' for cropping */
  display: block;
}
.dragonimg {
  aspect-ratio: 1/1;
  max-width: 100%;
  height: 100%;
}
.searchmonsterform {
  margin: 15px;
  padding: 15px;
  background-color: rgb(200, 97, 7);
}
.monster-card {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 15px;
  padding: 15px;
  width: 100%;
  box-sizing: border-box;
}
.monster-card2 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 15px;
  padding: 15px;
  width: 35%;
  box-sizing: border-box;
}
.hidden {
  display: none;
}
