@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0");

@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
    margin: 0px;
    padding: 0px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    scroll-behavior: smooth;
}

html, body {
	width: 100%;
	height: 100%;
	margin: 0;	
}

body {
    background-color: #f7eee1 !important;
    margin: auto;
}

h1 {
    font-size: calc(1.375rem + 1.5vw);
}

h2 {
    font-size: calc(1rem + 1.2vw);
}

main {
    margin: 10px;
    padding: 2%;
}

/* Menu principal */

header {
    color: #FF946E !important;
}

#iMenu {
    background-color: #FF946E;
}

#iLogo {
    background-color: #A60303;
    text-align: center;
}

#titulo {
    display: none;
}

menu {
    display: none;
    text-align: center;
}

menu > ul > li {
    cursor: pointer;
    border-bottom: 2px solid rgb(162, 61, 33);
}

menu > ul > li > a {
    color: black;
    text-decoration: none;
    user-select: none;
}

menu > ul > li:hover {
    background-color: #bf522e;
}

.material-symbols-outlined {
    display: block !important;
    background-color: #590202;
    color: beige;
    width: auto;
    text-align: center;
    cursor: pointer;
    user-select: none;
    padding: 7px;
}

/* Receitas da página principal */

.figuras {
    border-radius: 30px;
    transition: tamanho 1s;
}

@keyframes tamanho {
    0% {
        size: 100%;
    }
    100% {
        size: 150%;
    }
}

legend {
    font-size: 2em;
    font-weight: 300;
    color: #df6f46;
}

.receita {
    display: inline-flex;
    flex-direction: row;
    overflow: hidden;
    overflow-x: auto;
    width: 90vw;
}

.pre-receita {
    margin: 15px;
    width: 120px;
    height: 237px;

    border: 2px solid #e98282;
    border-radius: 15px 15px;
    background-color: white;
    text-align: center;
}

.pre-receita > a {
    text-decoration: none;
    color: black;
}

picture {
    display: flex;
    justify-content: center;
    flex-direction: row;
    margin: 5px;
}

.descricao {
    text-align: center;
    border-top: 2px #e7d3b8 solid;
    border-radius: 15px;
    padding: 5px;
    font-size: small;
    font-style: normal;
}

#itemporizador {
    width: 25px;
    height: 25px;
    margin: 5px 0px;
    align-content: baseline;
}

fieldset {
    margin: 10px 5px 10px 0;
}

/* Página Quem somos */

section#quemsomos {
    padding: 0px 10px;
    overflow: hidden;

    transition: width 1s, height 1s;
}

section#quemsomos > div#imagem {
    background: #f19191ec url(../Imagens/barman.jpg) no-repeat;
    background-size: cover;
    height: 200px;
    box-shadow: rgb(0, 0, 0) 2px 2px 3px;
}

/* Página de receitas */

.ftreceita {
    float: right;
    object-fit: cover;
    right: 200px;
    width: 426px;
    text-align: left;
}

/* Rodapé geral */

footer {
    margin: 3%;
    text-align: justify;
    background-color: wheat;
    padding: 0 10px;
    margin: 0;
}

.material-symbols-outlined {
    display: block;
    background-color: #590202;
    color: beige;
    width: auto !important;
    text-align: center;
    cursor: pointer;
    user-select: none;
    padding: 7px;
}

.material-symbols-outlined:hover {
    background-color: #740303cb;
}

