/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styles */
body, html {
    height: 100%;
    width: 100%;
    margin: 0;
}

body {
    background-color: #f0f0f0;
    color: black;
}

/* Container styles */
.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin-left: 5vw;
    margin-right: 5vw;
}

/* Content Styles */
.main-header {
    box-sizing: border-box;
    display: block;
    color: #333333;
    font-family: futura-pt, sans-serif;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px;
    padding-bottom: 5px;
    padding-top: 0px;
    text-align: center;
    text-transform: none;
}

.bio-content {
    font-family: "liberation-serif", serif;
    color: #a1a1a1;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    padding-bottom: 20px;
    padding-top: 5px;
    text-align: center;
    text-transform: none;
    max-width: 800px;
}

.social {
    background: #e8e8e8;
    height: 35px;
    line-height: 35px;
    text-align: center;
    width: 35px;
    border-radius: 18px;
    font-size: 0;
}

.social a {
    display: block;
    text-align: center;
    text-decoration: none;
}

a:-webkit-any-link {
    color: -webkit-link;
    cursor: pointer;
    text-decoration: underline;
}

.link-transition a {
    transition: background 0.2s ease, color 0.2s ease;
}

.link-transition a svg {
    transition: fill 0.2s ease;
}

svg {
    fill: #222222;
    height: 25px;
    opacity: 1;
    width: 25px;
    vertical-align: middle;
}

.social:hover {
    background: #cfcfcf
}

:not(svg) {
    transform-origin: 0px 0px;
}