:root {
    --main-text: hsl(0, 0%, 100%);
    --accent-green: hsl(75, 94%, 57%);
    --grey-700: hsl(0, 0%, 20%);
    --grey-800: hsl(0, 0%, 12%);
    --grey-900: hsl(0, 0%, 8%);
}

/* Fonts */
@font-face {
    font-display: swap; 
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('/assets/fonts/static/Inter-Regular.ttf') format('woff2'); 
}

@font-face {
    font-display: swap; 
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    src: url('assets/fonts/static/Inter-SemiBold.ttf') format('woff2'); 
}

@font-face {
    font-display: swap; 
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    src: url('assets/fonts/static/Inter-Bold.ttf') format('woff2'); 
}

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

body {
    background-color: var(--grey-900);
    color: white;
    font-family: Inter;
    font-size: 14px;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.main-container {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    background-color: var(--grey-800);
    width: 350px;
    height: 550px;
    border-radius: 10px;
    padding: 15px 25px;
}

/* Profile Section */
.main-container img {
    width: 100px;
    height: auto;
    border-radius: 100%;
    margin: 5px 0;
}

.profile-info {
    text-align: center;
    margin-top: 10px;
}

.profile-info h2{
    color: var(--accent-green);
    font-weight: 400px;
    font-size: 16px;
    margin-top: 4px;
}

.main-container p {
    margin: 25px 0 10px;
}

/* Social Links */
.social-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.social-links a{
    background-color: var(--grey-700);
    color: white;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    width: 100%;
    border-radius: 5px;
    margin: 7px 0;
    padding: 12px 0;
    transition: all 300ms ease-in-out;
}

.social-links a:hover {
    background-color: var(--accent-green);
    color: var(--grey-700);
}

/* Footer */
footer {
    background-color: var(--grey-800);
    color: white;
    text-align: center;
    padding: 10px 0;
}

footer a {
    color: var(--accent-green);
}