:root {
    --color-white: rgb(250, 250, 250);
    --color-light-blue: rgb(200, 225, 255);
    --color-gray: rgb(100, 100, 100);
    --color-dark-gray: rgba(51, 51, 51, 1);
    --color-black: rgb(0, 0, 0);
}

body {
    font-family: sans-serif;
    font-size: 1em;
    text-align: center;
    margin: 0;
}

a {
    color: var(--color-gray);
    text-decoration: none;

    &:visited {
        color: var(--color-gray);
        text-decoration: none;
    }
    
    &:hover {
        color: var(--color-dark-gray);
        text-decoration: underline;
    }
}

.container {
    width: 100vw;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    background-color: var(--color-light-blue);
}

.card {
    width: 50%;
    height: 50%;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background-color: var(--color-white);
    border: 0.25em solid black;
    border-radius: 0.25em;

    div {
        width: 100%;
    }
}

.name {
    display: flex;
    justify-content: center;

    h1 {
        font-size: 5em;
        color: var(--color-black);
    }
}

.links {
    display: flex;
    justify-content: center;
    gap: 0.5em;
}
