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: 18%;
    border-radius: 20px;
    padding: 50px 100px;
    background-color: rgba(255, 255, 255, 0.096);
}

#logo{
    width: 280px;
    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(195, 166, 0);
    margin: 0;
    width: 280px;
    text-align: center;
}

.link{
    text-decoration: none;
}

@media (hover: hover) {
    .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);
        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);
    }
}

@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: 486px) {
    #logo{
        width: 200px;
    }
    
    #titulo{
        width: 200px;
    }
    
    #nombre-luckyvapes{
        width: 200px;
    }
}