.imagenes {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
    margin-bottom: 75px;
}

.inicio {
        display: flex;
        align-items: center;
        flex-direction: column;
        font-family: 'Courier New', Courier, monospace;
        padding: 10px;
    }
    a{
    
        color: black;
        margin-inline: 10px;
    }
    span{
        font-size: 17px;
        font-family: 'Courier New', Courier, monospace;
        padding: 3px;
        color: black;
    }

    .guante1 {
    display: flex;
    align-items: center;
    flex-direction: column;
    background: none;
    cursor: pointer;
    margin-left: 50px;
    opacity: 0;
    transform: translateY(80px) scale(.95);
    transition: all .8s cubic-bezier(.22,1,.36,1);
    width: 300px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 24px;
        box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

a.imagenes{
    margin-bottom: 0px;
}

body{
    margin: 0px;
}


.imagenmckh {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0px;
}

.hero{
    position: sticky;
    top: 0;
    height: 100vh;
}

.heroimg{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.contenido{
    margin-top: 20vh;
    background: white;
    position: relative;
    z-index: 2;
    min-height: 100vh;
    padding: 0px;
}

header {
    will-change: transform;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    background: white;
    margin-bottom: 0;

    position: relative;
    z-index: 100;

    transform: translate3d(0, 0, 0);
    opacity: 1;
}

header.fijo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    animation: aparecerHeader 0.35s cubic-bezier(.22, 1, .36, 1);
}

@keyframes aparecerHeader {
    from {
        transform: translate3d(0, -100%, 0);
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

p{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 10px ;
    font-family: 'Courier New', Courier, monospace;
    font-size: 60px;
    text-decoration: none;
    background: black;
    color: white;
    padding: 30px;
}


.guante1.mostrar{
    opacity: 1;
    transform: translateY(0) scale(1);
}

.guante1:hover{
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,.15);
}

/* Celular*/
@media (max-width: 768px){
    .guante1{
        justify-content: center;
        margin-left: 50px;
        margin-top: 20px;
    }
    
    p{
        font-size: 30px;

    }
    span{
        color: black;
    }
}