body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Courier Prime', monospace;
}

.navbar-custom {
    background-color: rgba(0, 0, 0, 0.486);
}

.navbar-custom .navbar-brand img {
    height: 40px;
}

.hero {
    background: url("https://cdn.pixabay.com/animation/2023/01/24/23/10/23-10-04-56_512.gif") no-repeat center center/cover;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    min-width: 50vw !important;
    max-width: 80vw;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    letter-spacing: 0.05em;
    font-size: 2.4em;
    margin-bottom: 1rem;
    font-family: 'Courier Prime', monospace;
    font-weight: 200;
    word-wrap: break-word;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.buttons {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 80vw !important;
    margin: 0 auto;
}

.buttons button {
    background-color: transparent;
    color: #fff;
    font-family: 'Courier Prime', monospace;
    font-weight: lighter;
    font-size: 0.7em !important;
    cursor: pointer;
    padding: 15px 2%;
    border: 0px;
    transition: color 0.3s, background-color 0.3s;
    min-width: 10vw;
    max-width: 17vw;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
}

.buttons button:hover {
    transform: scale(1.05);
    background-color: #f0f0f0;
    color: #000;
    border: 2px solid #fff;
}

.p {
    color: #575757;
    font-size: 0.8rem;
    font-family: 'Courier Prime', monospace;
}

.l {
    color: #fff;
    font-style: italic;
    font-size: 0.8rem;
    font-family: 'Courier Prime', monospace;
}

.footer {
    background-color: #000;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}

.cursor {
    display: inline-block;
    width: 5px;
    height: 12px;
    background-color: #ffffff;
    animation: .6s infinite blink;
    vertical-align: middle;
}

@keyframes blink {

    0%,
    100% {
        opacity: 0
    }

    50% {
        opacity: 1
    }
}

.btnfos-2 {
    letter-spacing: 0;
    transition: background-color 280ms ease-in-out, color 280ms ease-in-out;
    color: #000000;
    /* Color negro predeterminado */
}

.btnfos-2:hover,
.btnfos-2:active {
    background-color: #d3d3d3;
    /* Fondo gris claro */
    letter-spacing: 3px;
    /* Aumenta el espaciado si es necesario */
}

.btnfos-2:hover .hero-container,
.btnfos-2:hover .hero-container h2,
.btnfos-2:hover .hero-container h2 span {
    color: #000000;
    /* Asegúrate de que todos los elementos internos sean negros */
}

#title {
    display: inline-block;
    font-size: 2em;
    border-right: 3px solid rgb(255, 255, 255);
    /* Cursor */
    white-space: normal;
    overflow: hidden;
}

/* Cursor parpadeante */
@keyframes blink-caret {
    50% {
        border-color: transparent;
    }
}

.no-cursor {
    border-right: none !important;
}