
/* selector universal */
/*  Reseteo de estilos */
*{
    margin: 0; /* margen de 0 */
    padding: 0; /* padding de 0 */
    box-sizing: border-box; /* para que el padding y el margin no se sumen al ancho y alto */
}

body{
    background-color: #222;
    color: beige; 
}

nav{
    background-image: url(../images/textura.jpg);
    padding: 10px 0px 10px 0px;
    text-align: center;
    position: fixed; /* para que el menu se quede fijo en la parte superior */
    width: 100%; /* para que ocupe el 100% del ancho de la pantalla */
    z-index: 1000; /* para que el menu se quede por encima de los demas elementos */
    border-bottom: 1px solid peru;
}

nav ul{
    display: inline-block;
}

nav ul li{
    padding-top: 12px;
    
}



li{
    float: left;
    margin: 5px;
}
ul{
    list-style: none;
    display: inline-block;
    
}
i{
    
    font-size: 22px;
    color: rgb(145, 49, 49);
}

i:hover{
    color: orange;
}

p{
    font-family: 'Courier New', Courier, monospace
}

a{
    text-decoration: none;
    
}
/*Fuentes del nav*/
a:any-link{
    font-family: 'Courier New', Courier, monospace;
    font-size: 20px;
    font-weight: 700;
    color: rgb(0, 0, 0);
    padding: 10px 20px;
    text-decoration: none;
}
a:-webkit-any-link{
    font-family: 'Courier New', Courier, monospace;
    font-size: 20px;
    color: rgb(0, 0, 0);
    padding: 10px 20px;
    text-decoration: none;
   
}
a:-moz-any-link{
    font-family: 'Courier New', Courier, monospace;
    font-size: 20px;
    color: rgb(0, 0, 0);
    padding: 10px 20px;
    text-decoration: none;
}

a:hover{
    color: orange;
}

button{
    border-radius: 10px;
}

.title{
    color : burlywood;
    /* font-family: 'Tilt Prism', cursive; --> */
    font-family: "Bungee Spice", sans-serif;
    font-size: 50px;
    font-weight: 2px;
    text-align: center;
    line-height: 50px;
    padding: 40px 0px 10px 0px;
}

.hastag{
    color: rgb(160, 8, 8);
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 30px;
}

#logo{
    padding-top: 0px;
}

#inicio{
    background-image: url(../images/encabezado.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 42vh;
    padding-top: 100px;
    padding-right: 0px;
    padding-left: 100px;

}

#RedesSociales{
    margin-top: 20px;
    display: flex;
    

}

/*Intro*/


#intro{
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 20px;
    background-image: url(../images/introBack.jpg);
    background-size: cover;
    padding: 10px 100px 10px 100px;
    font-weight: 1000;
    font-size: 20px;
}

#intro h2{
    margin-bottom: 15px;
}

#imagenintro iframe{
    border-radius: 30px;

}

#gif{
    border-radius: 30px;

}

/*Hamburguesas*/
#Menu {
    border-top: 1px solid peru;
    border-bottom: 1px solid peru;
    padding: 10px 100px 10px 100px;
    background-image: url(../images/MenuBack.jpg);
    background-size: cover;
    height: 90vh;
    
}
#Menu h2{
    color: #ffffff;
    font-family: "Anta", sans-serif;
    font-weight: 1000;
    font-size: 40px;
    font-style: normal;
}

#Menu h3{
    color: #f7f7f7;
    font-family: "Anta", sans-serif;
    font-weight: 1000;
    font-size: 30px;
    font-style: normal;
}

#tabla_Hamb{
    display: flex;
    flex-direction: column;
}
#tabla_Hamb table th, td{
    text-align: center;
    border: 1px solid #ffffff;

}

.filaMenu{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap; /* para que los elementos se acomoden en la misma fila */
    justify-content: space-between; /* para exisitir un espacio entre los elementos */
    gap: 20px 20px; 
    margin-bottom: 10px;
    margin-top: 10px;

}

.card{
    width: 250px;
    background-color: #191919;
    border-radius: 15px;
}
.card img,.card video,.card iframe{
    border-radius: 15px 15px 0 0;
}
.card h3{
    color: #32faa7;
}
.card h4{
    margin:0 5px 5px 0;
}
.card h3,.card h4,.card p,.card .ordenar{
    padding: 0 15px;
}
.card .ordenar {
    margin: 15px 0px 15px 0 px;
    height: 26px;
}

.card .sep{
    margin: 0 5px 5px 0;
    border: 1px solid #bb520b;
}
.card .ordenar button{
    float: right;
    background-color: rgb(247, 151, 25);
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    float: left;
}
.card button{
    margin-top: 4px;
    padding: 5px;
}


/*Recetas */

#Logros{
    background-color: beige;
    padding: 10px 100px 10px 100px;

    color: #222;
}
#Logros h2{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-align: center;
}
#Logros p, #Logros h3{
    text-align: center;
    margin-bottom: 30px;
}


.gridgoal{
    display: grid;
    grid-template-columns: repeat(4,350px);
    grid-gap:10px;
    justify-content: space-between;
    align-content: space-around;
}
@media (min-width: 400px){
    .gridgoal{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 30px 30px;
        margin-bottom: 15px;
        margin-top: 15px;
    }
}

.cardgoal{
    background-color: #222;
    border-radius: 15px;
    color: white;
    padding: 10px 15px;
}
.cardgoal h2{
    margin-bottom: 5px;
}
.cardgoal h3{
    margin-bottom: 20px;
}
.cardgoal p{
    margin-bottom: 20px;
}
.cardgoal ul{
    display: flex;
    justify-content: flex-end;
}
.cardgoal li{
    height: 30px;
}


/*Ordenar*/
#Ordenar h3{
    margin-bottom: 30px;
}
#Ordenar h2{
    margin-bottom: 15px;
}

#Ordenar{
   
    padding: 10px 100px 10px 100px;
    color: #ffffff;
    font-weight: bolder;
    font-size: large;
    background-image: url(../images/ordenarBack.jpg);
    background-size: cover;
}

#contenedorForm{
    padding-left: 100px;
}

#widget{
    padding-left: 160px;
}


.itemform{
    display: grid;
    grid-template-columns: 150px 350px;
    justify-content: center;
    margin-bottom: 10px;

}

.itemform label{
    font-weight: 700;

}

.itemform input, .itemform textarea{
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #222;
}
input[type="submit"]{
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #222;
    background-color: #e2d4d4;
    color: rgb(15, 9, 2);
    font-weight: 700;
    cursor: pointer;
    grid-column: 2 / 3;
    justify-self: end;
    
}

/*Footer*/
footer{
    background-color: #222;
    padding: 10px 100px 10px 100px;
    color: #ffffff;
    text-align: center;
}