:root {
    --background: #141414;
    --white: #ffffff;
    --card: #1f1f1f;
    --green: #c4f82a;
    --links: #333333;
}

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

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

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

body {
    margin: 0;
    background: var(--background);
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card {
    width: 40vh;
    background: var(--card);
    border-radius: 10px;
    padding: 33px;
    margin: 0 24px;
}

.card-imagen {
    text-align: center;
}

.card-imagen img {
    border-radius: 100%;
    margin: 14px 0;
    width: 100px;
    height: 100px;
}

.card-links {}

.card-links p {
    color: var(--white);
    text-align: center;
}

.card-information {
    text-align: center;
}

.card-information .name {
    color: var(--white);
    font-size: 1.94rem;
    font-weight: 600;
    line-height: 3.30rem;
}

.card-information .address {
    color: var(--green);
    font-size: 1.15rem;
    font-weight: 700;
}

.card-links {
    margin-top: 2.09rem;
}

.card-links p{
    font-size: 1.09rem;
    margin-bottom: 26.2px;
}

.card-links a {
    display: block;
    text-decoration: none;
    color: var(--white);
    background: var(--links);
    text-align: center;
    padding: 15px 0;
    margin: 10px;
    cursor: pointer;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 800ms ease-in-out;
}

.card-links a:hover {
    background: var(--green);
    color: var(--links);

}