html {
    font-family: sans-serif;
}

body {
    margin: 0;
}

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

.logo-name span {
    background: black;
    color: white;
    display: inline-block;
    text-transform: uppercase;
    margin-bottom: 1px;
    font-size: 3em;
    padding: 1px;
    line-height: 0.95em;
    font-weight: bold;
}

.connections {
    padding: 0;
}

.connections li {
    list-style-type: none;
    margin-bottom: 1px;
    font-size: 1.1em;
}

.connections svg {
    width: 1em;
    height: 1em;
    background: black;
    color: white;
    padding: 10px;
    vertical-align: middle;
}

.connections a {
    text-decoration: none;
    color: inherit;
}

.connections a:visited {
    color: inherit;
}

/** CV Page **/
.split-view {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 32px;
}

aside {
    padding: 0 32px;
}

main {
    padding: 0 32px;
    max-width: 1000px;
}

aside section {
    margin-bottom: 16px;
}

aside ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

main small {
    font-style: italic;
}

main ul li {
    padding-bottom: 8px;
}


@media screen and (max-width: 1200px) {
    .titlepage-container {
        flex-direction: column;
        font-size: 24px;
    }

    .connections li {
        line-height: 2em;
    }

    .split-view {
        flex-direction: column;
    }
}
