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

.backend-fondo1 {
    position: relative;
    width: 100%;
    min-height: 900px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 170px 50px 100px;
    text-align: center;
    color: white;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('/img/fulltechnexus/backend/fondo1.png') no-repeat center center;
    background-size: cover;
}

.backend-fondo1 h1 {
    font-size: 53px;
    margin: 0;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: -5px;
    white-space: nowrap;
}

.backend-fondo1 .highlight {
    font-weight: 700;
    font-size: 71px;
    text-transform: uppercase;
}

.backend-fondo1 p {
    font-size: 18px;
    line-height: 1.6;
    margin-top: 25px;
    margin-bottom: -80px;
    max-width: 600px;
}

.backend-fondo1 .details {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
    width: 80%;
    max-width: 600px;
    height: 200px;
}

.backend-fondo1 .details img {
    position: center;
    top: 0;
    left: 0;
    width: 80%;
    max-height: 250px;
    z-index: 1;
}

.backend-fondo1 .powered {
    margin-top: 40px;
}

.backend-fondo1 .powered img {
    max-width: 150px;
    height: auto;
}

.matrix-effect {
    display: inline-block;
    font-family: 'Courier New', Courier, monospace;
    overflow: hidden;
    border-right: .15em solid #005cff;
    white-space: nowrap;
    margin: 0 auto;
    letter-spacing: .15em;
    animation: typing 3.5s steps(30, end), blink 0.75s step-end infinite;
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

@media (max-width: 768px) {
    .backend-fondo1 h1 {
        font-size: 40px;
    }

    .backend-fondo1 .highlight {
        font-size: 44px;
    }

    .backend-fondo1 p {
        font-size: 18px;
        max-width: 90%;
        padding-bottom: 25px;
    }

    .backend-fondo1 .details {
        height: 200px;
    }

    .backend-fondo1 .details img {
        max-height: 300px;
        width: auto;
    }
}