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

body {
    background: rgb(195, 232, 200);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

h1 {
    font-size: 900;
    font-style: oblique;
    margin: 1em 0;

}

h2 {
    font-size: 700;
    font-style: oblique;
    margin: 1em 0;
}

h3,
h4,
h5,
h6 {
    font-size: 400;
    font-style: oblique;
    margin: 1em 0;
}

p {
    width: 700px;
}

.parrafo-inicio {
    width: 1000px;
}

header {
    width: 100%;
    text-align: center;
    padding: 5px 10px;
    background: #83ba67;

}

header nav a {
    color: darkslategray;
    transition: 1s;
    text-decoration: none;
}

header nav a:hover {
    color: lightseagreen;
    text-decoration: underline;
}

main {
    width: 100%;
    max-width: 900px;
}

section {
    margin: 0 1rem;
}

footer {
    width: 100%;
    padding: 10px;
    margin-top: 20px;
    background: #83ba67;
}

footer nav a {
    color: darkslategray;
    transition: 1s;
    text-decoration: none;
}

footer nav a:hover {
    color: lightseagreen;
    text-decoration: underline;
}

.recetas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    text-align: center;
    margin: 0 1rem;
    size-adjust: auto;

}

.receta {
    border-color: #3e3e3e;
    border-style: solid;
    border-width: 1px;
    border-radius: 1rem;
    background-color: rgb(202, 245, 245);
    overflow: hidden;
    margin: 2rem;
    text-align: inherit
}

.detalle-receta {
    margin: 0 1rem 1rem;
    display: block;
}

.foto-receta {
    width: 100%;
    border-bottom-width: 1px;
    border-bottom-style: hidden
}

.formulario {
    background-color: rgb(202, 245, 245);
    display: flex;
    flex-direction: column;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    border-color: #3e3e3e;
    border-style: solid;
    border-width: 1px;
    border-radius: 1rem;

}

.detalle {
    display: flex;
    border-color: #3e3e3e;
    border-style: solid;
    border-width: 1px;
    border-radius: 1rem;
    background-color: rgb(202, 245, 245);
    overflow: hidden;
    text-align: initial
}

.detalle-receta {
    margin: 0 1rem 1rem;
    display: block;
    width: 100%;
    max-width: 700px;
    text-align: justify;
    line-height: 1.5;
    font-size: 1.1rem;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    padding-bottom: 1rem;
    border-bottom: 1px solid #3e3e3e;
    box-sizing: border-box;
    background-color: rgb(124, 240, 161);
    overflow: hidden;
    text-align: initial;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1rem;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

}