body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: calc(10px + 0.33vw);
    -webkit-font-smoothing: antialiased;
    padding: 5vh 10vw;
    color: #121314;
}
h2 {
    font-size: 2.5rem;
}
h3 {
    font-size: 2rem;
}
p {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-size: 1.5em;
    font-weight: 300;
    line-height: 1.4;
    max-width: 28em;
}
.cv-button {
    padding: 0.8rem 2rem 0.8rem 2rem;
    font-size: 1.2rem;
    background: #333333;
    border-radius: 5px;
    color: #f1f1f1;
    margin-right: 1rem;
    cursor: pointer;
}

.gh-button {
    padding: 0.8rem 2rem 0.8rem 2rem;
    font-size: 1.2rem;
    background: #A3BBE1;
    border-radius: 5px;
    color: #000;
    margin-right: 1rem;
    cursor: pointer;
    border: 0px;
}

p a {
    text-decoration: none;
    background-image: linear-gradient(120deg, #A3BBE1 0%, #B5D9E2 100%);
    background-repeat: no-repeat;
    background-size: 100% 0.2em;
    background-position: 0 88%;
    transition: background-size 0.25s ease-in;
}
p a:hover {
    background-size: 100% 88%;
}
p a:active, p a:link, p a:visited {
    color: #121314!important
}