
html, body {
    height: 100%; /* Asegura que el cuerpo ocupe toda la altura de la ventana */
    margin: 0;
}
body {
    display: flex;
    flex-direction: column;
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa;
}

.container {
    flex: 1; /* Hace que el contenido principal ocupe el espacio disponible */
}
.header-img {
    position: relative;
    background-image: url('../img/header.jpg');
    background-size: cover;
    background-position: center;
    height: 1000px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.tittle {
    display: flex;
    justify-content: center;
    font-size: 2.5rem;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    padding-top: 150px;
}
.subtitle {
    font-size: 1.5rem;
    z-index: 1;
    padding-top: 250px;
    padding-bottom: 10px;
    margin: 0;
}
.cards-title {
    text-align: center;
    font-size: 2rem;
}
.card-border {
    padding: 10px; 
    box-sizing: border-box;
}
.card-img-top {
    border-bottom: #343a40 solid 1px;
    position: relative;
    background-size: cover;
    background-position: center;
    height: 200px;
    width: 100%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footer {
    position: relative;
    bottom: 0;
    width: 100%;
    background-color: #343a40;
    color: white;
    padding: 20px 0;
}
.social-icons a {
    color: white;
    margin: 0 10px;
}
.social-icons a:hover {
    color: #007bff;
}
.word {
    /*font-family: 'Roboto Mono', monospace;*/
    /*background-color: #5597e2;*/
    height: 1.4em;
    padding: 0 14px 0 7px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
  }
.word:before {
    content: '';
    background-color: #4A4A4A;
    width: 1px;
    position: absolute;
    top: 5px;
    bottom: 5px;
    right: 7px;
    animation: blinkAnim 500ms linear infinite;
}
@keyframes blinkAnim {
    0% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
  }
.employee-img {
    width: 100%;
    height: auto;
    align-self: center;
    justify-self: center;
}
