main {
  display: flex;
  justify-content: center;
}

.card {
  aspect-ratio: 2/3;
  height: 200px;
  border-style: solid;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  font-weight: 900;
  transition: transform 0.5s;
  background-color: white;
}
.card:hover {
  cursor: pointer;
}
.card p {
  padding: 30px;
  border-style: solid;
  border-radius: 30px;
  border-width: 2px;
  background-color: #e6101f;
  color: white;
  text-align: c;
  display: none;
}

#card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  aspect-ratio: 2/1;
  height: 730px;
  border-style: solid;
  transform: scale(0.9);
  background-color: #710b07;
}

h1 {
  position: absolute;
  top: 30px;
  left: 50px;
}/*# sourceMappingURL=styles.css.map */