@media (prefers-color-scheme: light) {
    body {
        background-color: white;
        color: black;
    }
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: #121212;
        color: white;
    }
}

body {
    display: grid;
    font-family: serif;
    height: 100vh;
    margin: 0;
    place-items: center center;
}

main {
    font-size: 4.5vh;
    padding: 4.5vh;
    text-align: center;
}

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

a:hover {
    color: dodgerblue;
}

p a {
    text-decoration: underline;
    text-decoration-color: dodgerblue;
    text-decoration-thickness: 0.1em;
    text-underline-offset: 0.1em;
}

ul {
    display: inline-flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

li {
  padding-left: 0.25em;
  padding-right: 0.25em;
}

/* icomoon.io icons */

@font-face {
    font-family: 'social';
    src: url('fonts/social.eot?t009o1');
    src: url('fonts/social.eot?t009o1#iefix') format('embedded-opentype'),
        url('fonts/social.ttf?t009o1') format('truetype'),
        url('fonts/social.woff?t009o1') format('woff'),
        url('fonts/social.svg?t009o1#social') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

i {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'social' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    color: inherit
}

.icon-github:before {
    content: "\e900";
}

.icon-linkedin:before {
    content: "\e901";
  }
