@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%;
    min-height: 60vh;
    background-image: url(../imagens/cinnamonrolls2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    text-align: center;
    box-shadow: 1px 1px 34px #00000080;

    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: flex;
    flex-direction: column;

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

div.receita {
    font-family: Arial, Helvetica, sans-serif;
    margin: 50px;
    padding: 20px;
    text-align: center;
    width: 80%;
    border-radius: 2%;
}

div.proxima {
    align-self: self-end;

    margin-right: 50px;
    margin-bottom: 50px;

    text-align: center;
    font-size: large;
}