:root {

    --Green: hsl(75, 94%, 57%);

    --White: hsl(0, 0%, 100%);
    --Grey-800: hsl(0, 0%, 12%);
    --Grey-700: hsl(0, 0%, 20%);
    --Grey-900: hsl(0, 0%, 8%);
}

@font-face {
    font-family: 'Inter';
    font-display: swap;
    font-weight: 400 700;
    src: url('./assets/fonts/Inter-VariableFont_slnt\,wght.ttf') format('truetype');
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    font: inherit;
    font-family: "Inter", sans-serif;
    line-height: 30px;
    color: var(--White);

}

body {
    background-color: var(--Grey-900);
}

p {
    font-size: 0.875rem;
}

img,
svg {
    display: block;
    max-width: 100%;
}

.container {
    display: flex;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
}

.profile-container {
    max-width: 400px;
    background-color: var(--Grey-800);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.25rem;
    border-radius: 0.5rem;
    row-gap: 1.5rem;

}

h1 {
    font-size: 1.625rem;
    font-weight: 600;
}

h2 {
    font-size: 1rem;
    color: var(--Green);
    font-weight: 600;
}

img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
}

button {
    background-color: var(--Grey-700);
    font-size: 0.825rem;
    border: 0;
    border-radius: 0.5rem;
    padding: 0.45rem 0;
    font-weight: 700;
}


.buttons-container {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}

button:hover {
    background-color: var(--Green);
    color: black;
    cursor: pointer;
}