@import url('https://fonts.googleapis.com/css2?family=PT+Serif&family=Raleway&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300&family=PT+Serif&family=Raleway&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

header {
    align-items: center;
    background-color: whitesmoke;
    width: 95%;
    height: 125px;
    display: flex;
    justify-content: space-around;
    margin: auto;
    padding: 1em;
    border-radius: 15px;
}


#header-img {
    height: 75px;
    width: auto;
    background-color: whitesmoke;
    cursor: pointer;
}

.encabezado {
    font-size: 50px;
    font-weight: 800;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif ;
    cursor: no-drop;
}

html {
    scroll-behavior: smooth;
}

nav a {
    text-decoration: none;
    color: black;
    font-weight: 800;
    font-size: 18px;
    font-family: 'Raleway', sans-serif;
    cursor: alias;
    padding: 2em;
}

a:hover {
    color: #808079;
}

form {
    display: block;
    place-items: center;
    background-color: #202020;
    color: whitesmoke;
    text-align: center;
    border-radius: 10px;
    width: 80%;
    max-width: 800px;
    margin: 50px auto 0 auto;
    padding: 20px;
}

#email {
    border-radius: 3px;
    text-align: center;
    margin: 10px;
    background-color: whitesmoke;
    width: 40%;
    height: 40px;
}

#submit {
    width: 100px;
    height: 25px;
    color: #000;
    background-color: whitesmoke;
    font-weight: 600;
    cursor: pointer;
}

main {
    margin: 0 3em 3em 3em;
    padding: 20px;
}

.guia {
    text-align: center;
    align-items: center;
}

#video {
    width: 40%;
    height: 400px;
    padding: 2em 0;
}

p, li {
    font-family: 'Merriweather', sans-serif;
    line-height: 30px;
}

.titulo {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    margin: 1.5em;
}

.subtitulo {
    font-family: 'Raleway', sans-serif;
    padding-left: 50px;
    font-weight: 600;
    margin: 1.25em;
}

h4 {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    margin: 1em;
}

.img-producto {
    height: 13em;
    width: 13em;
}

.producto {
    align-items: center;
    text-align: center;
    margin-top: 20px;
}

@media (max-width: 1000px) {
    nav a {
        display: block;
        padding: 0.15em;
        right: 0;
    }
    nav {
        margin-top: 1em;
    }

    header {
        height: 200px;
    }

    #video {
    width: 400px;
    }
}





