html {
    height: 100%;
}

body {
    font-family: Helvetica, sans-serif;
    height: 100%;
}

.main {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0 auto;
    max-width: 700px;
    box-sizing: border-box;
}

.headline {
    font-size: 24px;
    font-weight: 500;
    margin: 5rem 0;
    font-weight: bold;
}

.headline .sub {
    color: #cccccc;
}

h2 {
    font-size: 16px;
    font-weight: 500;
    font-weight: bold;
}

.links {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.links-section {
    margin-bottom: 2rem;
}


.social-section {
    margin-top: auto;
}

.social-links {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0;
    margin-bottom: 2rem;
}

.social-links li a {
    font-size: 0;
    display: inline-block;
    width: 48px;
    height: 48px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.social-links li a.github {
    background-image: url('icons/github.svg');
}

.social-links li a.linkedin {
    background-image: url('icons/linkedin.svg');
    margin-right: 10px;
}

a {
    color: #6495ED;
    text-decoration: none;
}

a:visited {
    color: #6495ED;
}

a:hover {
    color: #6495ED;
    text-decoration: underline;
}

a:active {
    color: #6495ED;
}