/* CSS created by Paolo Sagliocco */

body {
  display: flex;
  margin: 0;
  background: rgb(255, 248, 220);
}

.tarot-cards {
  width: 33%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: auto;
  height: 100vh;
}

.text-section {
  width: 67%;
  overflow: auto;
  height: 100vh;
}

.text-content {
  display: none;
  padding: 20px;
}

.card {
  margin: 20px 0;
}

.card img {
  width: 100%;
  max-width: 230px;
}

.text-content.active {
  display: block;
}

p {
  color: green;
  font-size: 1.2em;
}
