* {
    font-family: "Poppins", sans-serif;
}

.main {
    height: 90vh;
    background-image: url("../images/fondo-inicio.jpg");
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.65);
    background-blend-mode: darken;
    flex-direction: column;
}

.titulos {
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h1 {
    color: white;
    font-size: 12vh;
    text-shadow: 0 0 10px white;
    font-family: "Parisienne", cursive;
    font-weight: 500;
    font-style: normal;
}

h2 {
    color: white;
    font-size: 4vh;
}

.boton-inicio {
    width: 22vw;
    height: 11vh;
    margin-top: 25vh;
    font-size: 20px;
    border: 2px solid var(--verde); 
    background-color: transparent; 
    color: white;
    border-radius: 32px; 
    cursor: pointer;
    transition: all 0.3s;
}

.boton-inicio:hover {
    background-color: rgb(30, 30, 30);
    color: var(--verde);
}

.link-productos {
    font-weight: 500;
    font-size: 3.5vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    transition: all 0.3s;
}

.boton-inicio .link-productos:hover {
    color: var(--verde);
}

@media screen and (max-width: 1248px) {

    .main {
        background-size: cover;
    }

    .titulos {
        margin-top: 10vh;
        width: 80vw;
    }

    h1 {
        text-align: center;
    }

    .boton-inicio {
        width: 40vw;
        height: 12vh;
        margin-top: 15vh;
        margin-bottom: 10vh;
        background-color: green;
        border: none;
        border-radius: 0;
        z-index: 10;
    }

    .boton-inicio:hover {
        background-color: rgb(30, 30, 30);
        color: var(--verde);
    }

    .link-productos {
        font-size: 4vh;
        color: white;
    }

    .link-productos:hover {
        color: white;
    }
}

@media screen and (max-width: 768px) {

    h1 {
        font-size: 10vh;
    }

    h2 {
        font-size: 3.5vh;
        text-align: center;
    }

    .boton-inicio {
        width: auto;
        height: auto;
        padding: 1vh;
        z-index: 0;
    }
}