@import url('https://fonts.googleapis.com/css2?family=Inknut+Antiqua:wght@400;700&display=swap');

body {
  padding: 0;
      font-family: 'Inknut Antiqua', serif;
  width: 100%;
}

.tipo{
      font-family: 'Inknut Antiqua', serif;
}

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 */
}
   .container {
    display: flex;
    flex-direction: column;
    justify-content: center;   /* Centra vertical */
    align-items: center;       /* Centra horizontal */
    
    font-family: 'Inknut Antiqua', serif;
    border-radius: 22px;
    flex: 1 1 250px;           
    min-width: 220px;          
    box-sizing: border-box;
    font-weight: bolder;
    letter-spacing: 2px; 
    background-color: #cbff79;
    font-size: clamp(1rem, 2vw, 1.5rem);
    opacity: 0.95;
    aspect-ratio: 2 / 3;
    margin: 1%;
    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: #E0932F;
    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%;
}
