@import url('https://fonts.googleapis.com/css2?family=Inknut+Antiqua:wght@400;700&display=swap');
main {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;         /* Allow items to wrap to the next line */
    justify-content: center; /* Optional: center the containers */
    gap: 2%;   
    padding: 3%;              /* Optional: space between containers */
}

p {
    font-family: 'Inknut Antiqua', serif;
    font-size: 50px;}

    .tipo{
      font-family: 'Inknut Antiqua', serif;
}
    
    .container {
        font-family: 'Inknut Antiqua', serif;
        border-radius: 22px;
        flex: 1 1 250px;           /* Grow, shrink, min width 250px */
        max-width: 320px;            /* Never wider than 320px */
        min-width: 220px;          /* Never smaller than 220px */
        box-sizing: border-box;
        font-weight: bolder;
        letter-spacing: 2px; /* Separación entre letras */
        background-color:#b078dbc2;
        font-size: clamp(1rem, 2vw, 1.5rem);
        opacity: 0.95;
        justify-content: flex-start;
        align-items: center;
        aspect-ratio: 2 / 3;
        margin: 1%;
        display: flex;
        flex-direction: column;
        padding: 1%;
        text-align: center;
    }



    @media (max-width: 600px) {
  .container {
    font-size: 90%; /* más pequeño en pantallas pequeñas */
  }
}

@media (min-width: 1200px) {
  .container {
    font-size: 150%; /* más grande en pantallas grandes (1.5rem) */
  }
}

.boton-vermas {
    text-decoration: none;
    background-color: whitesmoke;
    color: #5a189a;
    padding: 10px 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    font-size: 16px;
    padding-top: 4%;
}
