@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
body {
    font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", Helvetica, Arial, sans-serif;
    background: url('path/to/your/background-texture.jpg') no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    padding: 0;
}

header {
    background-color: #1B396A;
    padding: 10px;
    text-align: center;
}

header .back-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
}

h1 {
    text-align: center;
    font-size: 3em;
    color: #2c3e50;
    margin: 20px 0;
    font-weight: bold;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    padding: 20px;
    max-width: 1200px;
}

.card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin: 20px;
    overflow: hidden;
    width: 300px;
    transition: transform 0.2s ease-in-out;
}

.card:hover {
    transform: scale(1.05);
}
strong{
  font-weight: 100;
}

.card img {
    width: 100%;
    height: 200px; /* Establece una altura fija */
    object-fit: cover; /* Asegura que la imagen se recorte para ajustarse al contenedor */
}

.details {
    padding: 20px;
    text-align: center;
}

