*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-image: url("..//img/Comidas.jpg");
    background-repeat: no-repeat; 
    background-size:cover;
    background-attachment: fixed;
}
.container3 {
    max-width: 900px;
    margin: auto;
    padding: 20px;
}

.artigo {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.artigo.visible {
    opacity: 1;
    transform: translateY(0);
}

.artigo h2 {
    color: #535353;
    margin-bottom: 10px;
}

.artigo p {
    color: #555;
}

.botao {
    background: #3d90eefa;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    margin-top: 10px;
    cursor: pointer;
    transition: background 0.3s;
}

.botao:hover {
    background: #8e4ef5;
}