
:root {
    --color-primary: #467;
    --color-secondary: #123;
}

html {height: 100%; background: whitesmoke;}
body {min-height: 100%; margin: 0;}

.header {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    height: 3em;
    padding: 0em 8em;
    background: white;
    box-shadow: 0 0 1em var(--color-secondary);
}

.title {
    display: flex;
    gap: 1em;
}

.title > * {
    align-content: center;
}

.title > .picture {
    align-self: center;

    position: absolute;
    left: 5rem;
    height: 2em;
}

.title > .name {
    font-size: 1.2em;
}

.links {
    display: flex;
    gap: 1em;
}

.links a {
    display: inline-block;
    color: var(--color-secondary);
    text-decoration: none;
    border: 1px solid transparent;
    padding: 0em 1em;
    align-content: center;
    transition: background 0.5s ease;
}

.links a:hover {
    background: var(--color-primary);
    color: whitesmoke;
    box-shadow: 0 0 1em var(--color-primary);
}

.body {
    padding: 1em 8em;
}

.content {
    display: inline-flex;
    flex-direction: column;
    gap: 0.2rem;
    width: 32rem;
}

.content a {
    color: dimgray;
    background: transparent;
    text-decoration: none;
    padding: 0.2rem 1rem;
    border-left: 4px solid transparent;
}

.content a:hover {
    color: black;
    background: rgba(0, 0, 0, 0.05);
    border-left-color: var(--color-primary);
}
