    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Poppins", sans-serif;
        text-decoration: none;
        list-style: none;
    }

    body {
        overflow: auto;
    }

    .containerf {
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(./img/br-author-joaopedro.jpeg);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 160vh;
    }

    .containerAChefs {
        color: #f54828;
        text-decoration: none;
        transition: 0.3s;
    }
    
    .containerAChefs:hover{
        color: white;
    }

    header {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 1rem;
    }

    .container-text {
        background: rgba(0, 0, 0, 0.6);
        padding: 30px;
        max-width: 700px; /* Limita a largura máxima para telas grandes */
        margin-top:10%;
        margin-left: 69%;
        border-radius: 15px;
        color: #fff;
    }

    .text {
        text-align: left;
    }

    .text h3 {
        color: #fff;
        font-size: 18px;
    }

    .text h1 {
        color: #fff;
        margin: 20px 0;
        font-size: 3rem;
    }

    .text span {
        color: #f54828;
    }

    .text p {
        font-weight: 400;
        line-height: 1.8;
        margin-bottom: 1rem;
    }

    .redes-social {
        margin-top: 20px;
        display: flex;
        gap: 15px;
    }

    .redes-social a {
        color: #f54828;
        font-size: 1.7rem;
    }

    button {
        color: #f54828;
        background: transparent;
        border: solid 1px #f54828;
        padding: 10px;
        border-radius: 15px;
        font-size: 14px;
        cursor: pointer;
        width: 100%;
        text-transform: uppercase;
    }

    button:hover {
        background-color: #f54828;
        color: #fff;
        transition: background-color 0.5s;
    }

    /* Media Queries */

    @media (max-width: 1200px) {
        .background {
            height: 100vh;
        }
    }

    @media (max-width: 768px) {
        .btn {
            font-size: 16px;
        }
    }

    @media (max-width: 480px) {
        .btn {
            font-size: 14px;
            padding: 8px;
        }
    }
