@font-face {
    font-family: Rubik;
    src: url('../fonts/Rubik.ttf');
}

body {
    font-family: 'Rubik', sans-serif;
    background-color: #f5e1c0;
    color: #4a2c2a;
    text-align: center;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    background: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.logo {
    width: 300px;
}

h1, h2, h4 {
    color: #8b4513;
}

.menu {
    background: #fff8e1;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

ul {
    list-style: none;
    padding: 0;
}

li {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    transition: 0.3s;
}

li:hover {
    background: #f0d9b5;
    transform: scale(1.02);
    transition: 0.3s;
}

.ingredientes {
    display: block;
    font-size: 0.9em;
    color: #704214;
    margin-top: 5px;
    font-style: italic;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

th, td {
    padding: 10px;
    border: 1px solid #8b4513;
}

th {
    background: #d2a679;
    color: white;
}

form {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

input, textarea {
    width: 80%;
    padding: 8px;
    margin: 5px 0;
    border: 1px solid #8b4513;
    border-radius: 5px;
    font-family: Arial, Helvetica, sans-serif;
}

button {
    background: #8b4513;
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

button:hover {
    background: #a0522d;
    transform: scale(1.05);
}

a {
    text-decoration: none;
    color: #4a2c2a;
    font-weight: bold;
    transition: 0.3s;
}

a:hover {
    color: #a0522d;
    text-decoration: underline;
}
