body {
    background-color: hsl(0, 0%, 8%);
    display: flex;
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center; /* Centraliza verticalmente */
    height: 100vh; /* Ocupa toda a altura da tela */
    margin: 0;
}

.box {
    background-color: #222; /* Cor do card */
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

.profile {
    font-family: Inter;
}

.image-pic {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
}

h1 {
    font-size: 23px;
    color: hsl(0, 0%, 100%);
    font-weight: 600;
}

h2 {
    font-size: 14px;
    color: hsl(75, 94%, 57%);
    font-weight: 400;
}

p {
    font-size: 14px;
    color: hsl(0, 0%, 100%);
    font-weight: 200;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Espaço entre os botões */
    width: 100%;
    max-width: 300px;
    /* Define uma largura máxima para manter o layout organizado */
}

button {
    margin-top: 5px;
    text-align: center;
    text-decoration: none;
    height: 40px;
    border: none;
    border-radius: 5px;
    background-color: hsl(0, 0%, 20%);
    
    font-family: Inter;
    color: hsl(0, 0%, 100%);
    font-size: 12px;
    font-weight: 700;

    cursor: pointer; /* quando passar o mouse em cima, algo acontece */
    transition: background 0.4s ease; /* deixa a transição de cor suave*/
}

button:hover {
    background-color: hsl(75, 94%, 57%);
}

/* FOOTER */

.attribution {
    position: fixed;
    bottom: 0;
    margin-bottom: 20px;
}