body{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(70deg, rgb(0, 0, 0), rgb(59, 59, 59));
    margin: 0;
}

#inicio{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    border-radius: 20px;
    padding: 50px 100px;
    background-color: rgba(0, 0, 0, 0.096);
}

#logo{
    width: 200px;
    image-rendering:optimizeSpeed;
}

#titulo{
    text-align: center;
    font-family: "Roboto", sans-serif;
    color: white;
    margin: 20px 0 0 0;
    width: 280px;
    font-weight: 500;
    font-size: 1.4em;
}

#nombre-luckyvapes{
    font-family: "Roboto", sans-serif;
    color: rgb(209, 174, 1);
    margin: 0;
    width: 400px;
    text-align: center;
}

.link{
    text-decoration: none;
}

#instrucciones {
    width: 1356px;
    height: 877px;
    background-size: cover;
    background-image: url("../imagenes/instrucciones_lucky.png");
}

#boton-enviar-fb {
    width: 250px;
    height: 60px;
    background-color: rgb(0, 51, 218);
    border: none;
    border-radius: 8px;
    font-size: 20px;
    font-family: "Roboto";
    font-weight: 500;
    color: aliceblue;
    margin-top: 30px;
    margin-bottom: 50px;
}

@media (hover: hover) {
    .boton-index{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 280px;
        height: 80px;
        border-radius: 5px;
        margin-top: 20px;
        color: white;
        font-family: "Roboto", sans-serif;
        font-weight: 500;
        font-size: 30px;
        text-decoration: none;
        background-color: rgb(168, 143, 0);
        transition: all 300ms ease;
        border: 0;
    }

    .boton-index:hover{
        background-color: rgb(195, 166, 0);
        color: rgb(0, 0, 0);
        transform: scale(1.1);
        box-shadow: 0 0 10px rgb(195, 166, 0);
    }

    #boton-enviar {
        width: 250px;
        height: 60px;
        background-color: rgb(3, 185, 6);
        border: none;
        border-radius: 8px;
        font-size: 20px;
        font-family: "Roboto";
        font-weight: 500;
        color: aliceblue;
        margin-top: 30px;
        transition: all 300ms ease;
    }

    #boton-enviar:hover {
        transform: scale(1.1);
        background-color: rgb(3, 233, 7);
        color: black;
        box-shadow: 0 0 10px rgb(2, 255, 2);
    }

    #boton-enviar-fb {
        width: 250px;
        height: 60px;
        background-color: rgb(0, 51, 218);
        border: none;
        border-radius: 8px;
        font-size: 20px;
        font-family: "Roboto";
        font-weight: 500;
        color: aliceblue;
        margin-top: 30px;
        margin-bottom: 50px;
        transition: all 300ms ease;
    }

    #boton-enviar-fb:hover {
        transform: scale(1.1);
        background-color: rgb(3, 62, 255);
        color: black;
        box-shadow: 0 0 10px rgb(2, 82, 255);
    }
}

@media (hover: none) {
    .boton-index{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 200px;
        height: 50px;
        border-radius: 5px;
        margin-top: 20px;
        color: white;
        font-family: "Roboto", sans-serif;
        font-weight: 500;
        font-size: 20px;
        text-decoration: none;
        background-color: rgb(168, 143, 0);
        border: 0;
    }

    .boton-index:active{
        background-color: rgb(255, 255, 255);
        color: rgb(0, 0, 0);
    }
}

@media screen and (max-width: 1400px) {
    #instrucciones {
        width: 1085px;
        height: 702px;
    }
}

@media screen and (max-width: 1115px) {
    #instrucciones {
        width: 600px;
        height: 2150px;
        background-image: url("../imagenes/instrucciones_lucky_vertical-02.png"); 
        background-size:cover; 
    }
}

@media screen and (max-width: 530px) {
    #instrucciones {
        width: 400px;
        height: 1450px;
        background-image: url("../imagenes/instrucciones_lucky_vertical-02.png"); 
    }
}

@media screen and (max-width: 486px) {
    #logo{
        width: 200px;
    }
    
    #titulo{
        width: 200px;
    }
    
    #nombre-luckyvapes{
        width: 200px;
    }
}