@font-face {
    font-family: 'Inter';
    src: url(assets/fonts/static/Inter-Regular.ttf),
        url(assets/fonts/static/Inter-SemiBold.ttf),
        url(assets/fonts/static/Inter-Bold.ttf);
}

:root {
    --fuenteTexto: 'Inter', sans-serif;

    --green: hsl(75, 94%, 57%);
    --white: hsl(0, 0%, 100%);
    --grey700: hsl(0, 0%, 20%);
    --grey800: hsl(0, 0%, 12%);
    --grey900: hsl(0, 0%, 8%);
}

* {
	margin: 0;
	padding: 0;
	list-style: none;
	text-decoration: none;
	border: none;
	outline: none;
    box-sizing: border-box;
}

body {
    font-family: var(--fuenteTexto);
    font-size: 14px;
    background-color: var(--grey900);
    color: var(--white);
}

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

.card {
    background-color: var(--grey800);
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 385px;
    padding: 30px;
    border-radius: 15px;
}

.card img {
    max-width: 30%;
    border-radius: 50%;
}

.info {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 0;
    line-height: 1.5;
}

.name {
    font-size: 23px;
    font-weight: 700;
}

.info p{
    font-weight: 600;
    color: var(--green);
}

.job {
    font-weight: 400;
    padding: 10px 15px;
}

.link-btn {
    display: flex;
    justify-content: center;
    font-weight: 600;
    width: 100%;
    background-color: var(--grey700);
    padding: 15px 0;
    margin-bottom: 10px;
    border-radius: 10px;
}

.link-btn:hover, .link-btn:active {
    background-color: var(--green);
    color: var(--grey900);
    cursor: pointer;
}

/*Footer*/
.attribution { 
    font-size: 11px; 
    text-align: center; 
}
.attribution a { 
    color: hsl(228, 45%, 44%); 
}
