@font-face {
    font-family: "Inter";
    src: url("./assets/fonts/Inter-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Inter";
    src: url("./assets/fonts/Inter-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Inter";
    src: url("./assets/fonts/Inter-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}
:root {
    --clr-white: hsl(0, 0%, 100%);
    --clr-green: hsl(75, 94%, 57%);
    --clr-grey-700: hsl(0, 0%, 20%);
    --clr-grey-800: hsl(0, 0%, 12%);
    --clr-grey-900: hsl(0, 0%, 8%);
}

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

body {
    font-family: "Inter", sans-serif;
    background-color: var(--clr-grey-900);
    color: var(--clr-white);
    
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    block-size: 100vh;
    inline-size: auto;
}

img {
    margin-block-end: 15px;
    border-radius: 50%;
    max-block-size: 80px;
}

h1 {
    font-weight: 700;
}

strong {
    font-weight: 600;
}

.card {
    text-align: center; 
    border-radius: 10px;
    padding-inline: 35px; 
    padding-block: 20px;
    margin: 10px;
    background-color: var(--clr-grey-800);
    inline-size: 350px

}
.location {
    color: var(--clr-green);
    font-weight: 300;
    margin-block: 10px;
    font-size: 0.8rem;
}

.job-position {
    color: var(--clr-white);
    font-weight: 300;
    font-size: 0.7rem;
    margin-block-start: 20px;
}

.social-links {
    display: flex;
    flex-direction: column;
    margin-block: 20px;
    
}
.social-links a {
    text-decoration: none;
    color: white;
    font-weight: 200;
    font-size: 0.9rem;
}
.links {
    padding: 10px;
    background-color: var(--clr-grey-700);
    border-radius: 7px;
    margin-block: 7px;
    font-size: 0.1rem;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.links:hover, .links:focus{
    background-color: var(--clr-green);
    color: var(--clr-grey-900);
    transform: translateY(-2px);
    outline: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}