html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    /* border: 0; */
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}
html {
    font-size: 62.5%;
}
body {
    line-height: 1;
    font-size: 1.6rem;
}
/* * {
    border: 1px solid #4f4f4f;
    
} */

/*Page styles below*/

/* Font - font-family: 'Mochiy Pop P One', sans-serif;*/

header {
    width: 100%;
    height: 10vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

header h1 {
    font-size: 3rem;
    font-family: "Mochiy Pop P One", sans-serif;
    border: 1px solid #4f4f4f;
    padding: 1vh;
    border-radius: 1rem;
}

header nav {
    width: 40%;
    display: flex;
    justify-content: space-evenly;
}

header nav a {
    text-decoration: none;
    font-size: 2rem;
    color: #4f4f4f;
    font-weight: bold;
}

header nav a:hover {
    border-top: 2px solid #4f4f4f;
}

.middle {
    height: 100vh;
    width: 100%;
}

.middle .top {
    height: 50vh;
    background-image: url(./attributes/georg-regauer-qo0qBl6T7R8-unsplash.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.middle .top .formContainer {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.formContainer input {
    height: 3vh;
}

/*form button styles*/
.formContainer input:last-child {
    width: 10rem;
    height: 3.5vh;
    color: white;
    border: 1px solid white;
    font-size: 1.5rem;
    background-color: rgba(79, 79, 79, 0.5);
    border-radius: 0.3rem;
}

.formContainer input:last-child:hover {
    cursor: pointer;
    border: 2px solid white;
    font-weight: bold;
}
.formContainer input:last-child:active {
    width: 10rem;
    height: 3.5vh;
    color: white;
    border: 1px solid white;
    font-size: 1.5rem;
    background-color: rgba(79, 79, 79, 0.5);
}

/*Input bar styles*/

.formContainer input:first-child {
    border: 1px solid white;
    background-color: rgba(79, 79, 79, 0.8);
    height: 3.1vh;
    outline: none;
    border-radius: 0.3rem;
}
.formContainer input:first-child::placeholder {
    color: white;
}

.formContainer input:first-child:focus {
    color: white;
}

/*styles for the bottom portion of the website*/

.bottom {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.bottom h2 {
    margin-top: 3vh;
    font-size: 3rem;
}

.recipeContainer {
    height: 20vh;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    margin-top: 10vh;
}

.recipeContainer h1 {
    text-align: center;
    margin-bottom: 2vh;
    font-size: 2.2rem;
}

.recipeContainer img {
    max-height: 22rem;
    width: 21rem;
}

.recipeContainer div:hover {
    cursor: pointer;
}

.recipeContainer div {
    border: 2px solid #4f4f4f;
    padding: 10px;
    border-radius: 0.5rem;
    height: 27vh;
}

footer {
    width: 100%;
    height: 10vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-top: 2px solid #4f4f4f;
}

footer nav {
    margin: 10px;
    width: 40%;
    display: flex;
    justify-content: space-around;
}

footer nav a {
    text-decoration: none;
    font-size: 2rem;
    color: #4f4f4f;
    font-weight: bold;
}

footer nav a:hover {
    border-top: 2px solid #4f4f4f;
}

footer p {
    margin-bottom: 0;
    margin-top: 2vh;
}
