/**
 * @copyright Nova-Spice
 * @author Nucliux (edoardo@nucliux.mx)
 * @version 1.1.0 (Julio 2022)
 * @since 1.1.0
 */
 
/*Importación de otros estilos*/
@import "reset.css";

/*Tipografías*/
@font-face{
    font-family: "Myriad Pro";
    src: url("fonts/MyriadPro-Regular.otf");
    font-weight: 400;
}

/*Página*/
html,body{
    background-color: #FFFFFF;
    width: 100%;
    height: 100%;
    color: #000000;
    font-family: "Myriad Pro", sans-serif;
    font-weight: 400;
    font-size: 1.5vw;
    line-height: 2vw;
}

.inicio{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 25%;
    width: 50%;
    height: 100vh;

    display: -webkit-flex;
    -webkit-flex-direction: column;
    -webkit-justify-content: center;
    -webkit-align-items: center;
}

.inicio img{
    margin-bottom: 5vh;
    width: 35%;
    height: auto;
    object-fit: contain;
}

.inicio a{
    background-color: #ADB329;
    margin-bottom: 3vh;
    padding: 1vh 0;
    width: 75%;
    border: none;
    border-radius: 2vw;
    color: #FFFFFF;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;

    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.inicio a:hover{
    transform: scale(1.1,1.1);
    -webkit-transform: scale(1.1,1.1);
}

/*Estilo para media pantalla
______________________________*/
@media only screen and (max-width: 1024px){
    html,body{
        font-size: 2.5vw;
        line-height: 3vw;
    }

    .inicio{
        padding: 0 15%;
        width: 70%;
    }

    .inicio img{
        width: 50%;
    }

    .inicio a{
        border-radius: 4vw;
    }
}

/*Estilo para móviles
______________________________*/
@media only screen and (max-device-width: 465px) and (max-aspect-ratio: 13/9){
    html,body{
        font-size: 4vw;
        line-height: 4.5vw;
    }

    .inicio{
        padding: 0 5%;
        width: 90%;
    }

    .inicio img{
        width: 75%;
    }

    .inicio a{
        width: 100%;
        border-radius: 4vw;
    }
}
