@import url('https://fonts.googleapis.com/css2?family=Rubik+Mono+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik+Mono+One&family=Rubik+Scribble&display=swap');

:root {
    --fonte-h1: 'Rubik Mono One';
    --fonte2: 'Rubik Scribble';
}

body {
    background-color:rgb(245, 154, 121);
    margin: 0;
    padding: 0;
}

nav {
    width: 100%;
    background-color: coral;
    height: 40px;
    text-align: center;

    display: flex;
    justify-content: center;
    align-items: center;
}

a {
    text-decoration: none;
    color: black;
}

a:visited {
    color: black;
    text-decoration: none;
}

nav a:not(:last-child)::after {
    content: " |"; 
}


nav a:hover {
    text-decoration: underline;
}

header {
    width: 100%;
    height: 600px;
    background-image: url(imagens/fundo.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;

    display: flex;
    justify-content: center;
    align-items: center;
}

h1 {
    font-family: var(--fonte2), Arial;
    margin: 0;
    font-size: 50px;
}

header section {
    text-align: center;
    color: white;
    padding: 20px;
    text-shadow: 3px 3px 3px black;
    max-width: 800px;
}

header section p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
}

main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

div.receita {
    background-color: rgba(255, 255, 255, 0.281);
    border-color: rgb(0, 0, 0);
    border-width: 1px;
    border-style:  groove;
    text-align: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

div.receita img {
    width: 70%;
    height: auto;
}