body {
    background-color: #ededed;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

/* Estilos para el header */
.header-image {
   background-color: #ffffff;
    text-align: center;
    /* padding: 1rem 0; */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    height: 120px; /* Altura fija del header */
    position: relative;
}
.header-image > img {
    top: 0;
    right: 0;
    height: 120px;
    position:absolute ;
    z-index: 1;
    opacity: 0.8;
}
.header-text {
    font-weight: bold;
    color: #000000;
    z-index: 111;
}

/* Estilos para el main */
.content-main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Estilos para card */
.a-text-decoration {
    text-decoration: none;
}

.size-img {
    max-width: 200px;
    max-height: 150px;
}

.highlight-text {
    font-weight: bold;
    color: #ffc107;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.5rem;
    border-radius: 0.25rem;
    text-align: center;
    width: fit-content;
    margin: 0 auto;
}

.card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-10px);
}

.card-pro:hover {
    box-shadow: 0 8px 16px rgba(0, 117, 5, 0.6);
}

.card-dev:hover {
    box-shadow: 0 8px 16px rgba(78, 150, 234, 0.6);
}

/* Estilos para el footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 0.5rem 0;
    width: 100%;
    flex-shrink: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

footer a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}