:root {
    --color-white: hsl(0, 0%, 100%);
    --color-grey: hsl(0, 0%, 20%);
    --color-dark-grey: hsl(0, 0%, 12%);
    --color-off-black: hsl(0, 0%, 8%);
    --color-nutmeg: hsl(14, 45%, 36%);
    --color-dark-raspberry: hsl(332, 51%, 32%);
    --color-rose-white:  hsl(0, 0%, 100%);
    --color-eggshell:hsl(30, 54%, 90%);
    --color-light-grey: hsl(30, 18%, 87%);
    --color-wenge-brown: hsl(30, 10%, 34%);
    --color-dark-charcoal: hsl(24, 5%, 18%);
    --color-Bright-Orange:hsla(5, 100%, 69%, 1);
    --color-Gold:hsla(51, 100%, 50%, 1);
    --color-Neon-Pink:hsla(330, 100%, 50%, 1);
    --color-Sandy-Beige:hsla(28, 87%, 67%, 1);
    --color-Burgundy:hsla(345, 100%, 25%, 1);
    --color-Purple:hsla(282, 44%, 47%, 1);
    --color-Pink-Gradient:linear-gradient(to right, hsla(330, 100%, 70%, 0.8), hsla(6, 63%, 46%, 0.8));
    --color-Burnt-Orange:hsl(30, 100%, 50%);
    --color-Warm-Beige:hsl(30, 30%, 70%);
    --color-Charcoal-Black:hsl(0, 0%, 20%);
    --color-Muted-Gold:hsl(45, 75%, 55%);
    --color-Soft-Gray:hsl(0, 0%, 75%);
    --color-Slate-Blue:hsl(210, 25%, 40%);
    --color-Coral-Pink:hsl(10, 65%, 65%);
    --color-Dusty-Rose:hsl(340, 40%, 60%);
}

@font-face {
    font-family: 'Inter';
    src: url(./assets/fonts/Inter-VariableFont_slnt\,wght.ttf);
    font-style: normal;
}

*, ::before, ::after {
    padding: 0;
    margin: 0;
    font-size: 14px;
    text-decoration: none;
    box-sizing: border-box;
}

body {
    background-color: var(--color-eggshell);
    width: 100vw;
    height: 100vh;
    font-family: 'Inter';
    font-size: 0.875rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    max-width: 400px;
    background-color: var(--color-white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.container:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.user-avatar {
    border-radius: 50%;
    width: 120px;
    margin-top: 0;
    margin-bottom: 20px;
    border: 4px solid var(--color-Sandy-Beige);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.name {
    color: var(--color-dark-grey);
    font-weight: 600;
    font-size: 2.5rem;
    margin-bottom: 8px;
    text-align: center;
}

.location {
    color: var(--color-Sandy-Beige);
    margin-bottom: 25px;
    font-weight: 400;
    font-size: 1.1rem;
    text-align: center;
}

.quote {
    color: var(--color-wenge-brown);
    margin-bottom: 30px;
    font-style: italic;
    font-weight: 400;
    font-size: 1.2rem;
    text-align: center;
}

.social-links {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-Sandy-Beige);
    background-color: var(--color-grey);
    width: 100%;
    height: 50px;
    margin-bottom: 12px;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.social-links a:last-child {
    margin-bottom: 0;
}

.social-links a:hover {
    background-color: var(--color-Slate-Blue);
    transform: scale(1.02);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.social-links a i {
    margin-right: 8px;
}

@media screen and (max-width: 445px) {
    .container {
        padding: 20px;
    }
}

@media screen and (max-width: 375px) {
    .container {
        padding: 15px;
    }
    .name {
        font-size: 2rem;
    }
    .location {
        font-size: 1rem;
    }
    .quote {
        font-size: 1.1rem;
    }
}
