    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: "Inter", sans-serif;
        background-color: hsl(0, 0%, 8%);
        color: hsl(0, 0%, 100%);
        font-size: 14px;
        min-height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 1.5rem;
        flex-direction: column;
    }

    .content {
        background-color: hsl(0, 0%, 12%);
        border-radius: 10px;
        padding: 2rem 1.5rem;
        width: 100%;
        max-width: 400px;
        text-align: center;
    }

    .pessoa img {
        width: 100px;
        border-radius: 50%;
        margin-bottom: 1rem;
    }

    .pessoa h1 {
        font-weight: 700;
        font-size: 1.4rem;
        margin-bottom: 0.25rem;
    }

    .pessoa h5 {
        color: hsl(75, 94%, 57%);
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .pessoa p {
        color: #ccc;
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .paginas {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .botao {
        text-decoration: none;
        border-radius: 5px;
        width: 100%;
        max-width: 300px;
        padding: 0.75rem;
        background-color: hsl(0, 0%, 20%);
        color: hsl(0, 0%, 100%);
        cursor: pointer;
        font-weight: 600;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    .botao:hover {
        background-color: hsl(75, 94%, 57%);
        color: hsl(0, 0%, 8%);
    }

    footer {
        margin-top: 1rem;
        text-align: center;
        font-size: 12px;
        color: hsl(0, 0%, 100%);
    }

    footer a {
        text-decoration: none;
        color: hsl(75, 94%, 57%);
    }