body{
    margin: 0;
    text-align: center;
}

#pantalla-inicio{
    margin: 0;
    min-height: 100vh;
    position: relative;
}

h1{
    font-family: "cinzel";
    font-size: 70px;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease-in-out;
}

h1:hover{
    transform: scale(1.1);
}

p{
    font-family: "cinzel";
    font-weight: 100;
}

.texto-intro{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    color: white;
    z-index: 2;
    margin: auto;
    padding: 130px;

}

.video-fondo{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.capa{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.40;
    mix-blend-mode: overlay;
}

.menu__de__armas{
    display: flex;
    justify-content: center;
    align-content: space-between;
    gap: 20px;
    margin-top: 20px;
    font-family: "cinzel";
    font-size: 19px;
}

a{
    text-decoration: none;
    color: white;
    border: 1px solid white;
    padding: 10px;
    border-radius: 10px;
    font-size: 26px;
}

footer{
    background-color: #fff;
    color: #000;
    padding: 20px;
    font-family: "cinzel";
    font-size: 14px;
    line-height: 1.5;
    font-size: 16px;
    border-radius: 20px;
}

.enlazes__github{
    text-decoration: none;
    color: black;
    border: 1px solid black;
    padding: 5px;
    border-radius: 10px;
    font-size: 14px;
    margin: 0 5px;
    font-size: 18px;
}

.enlazes__github:hover{
    background-color: black;
    color: white;
    transition: 0.3s;
}

a:hover{
    background-color: white;
    color: black;
    transition: 0.3s;
}

@media (max-width: 600px) {
    .texto-intro{
        padding: 20px;
    }

    h1{
        font-size: 40px;
    }

    .menu__de__armas{
        flex-direction: column;
        font-size: 15px;
    }
}