@import url(https://fonts.googleapis.com/css?family=Glegoo);


html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Glegoo', serif;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    color: #FFFFFF;
}

.custom-svg,
.path {
    fill: #FFFFFF;
}

.container {
    width: 100%;
    max-width: 50vw;
}

h1 {
    font-size: 2vw;
}

.card {
    background-color: rgba(255, 255, 255, .2);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 100%;
    vertical-align: auto;
}

#profile-picture {
    width: 25%;
    height: 25%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: auto;
}

.description {
    margin: 20px 0;
    width: 100%;
}

blockquote {
    border-left: 10px solid #ccc;
    margin: 1.5em 10px;
    padding: 0.5em 10px;
    quotes: "\201C" "\201D" "\2018" "\2019";
}

blockquote:before {
    color: #ccc;
    content: open-quote;
    font-size: 4vw;
    line-height: 0.1em;
    margin-right: 0.25em;
    vertical-align: -0.4em;
}

blockquote p {
    display: inline;
}

.social-links {
    display: inline-flex;
}

.social-links a {
    text-decoration: none;
    color: #ffffff;
    margin: 0 10px;
}

.social-links .icon-text:hover, .social-links .icon-text:hover > .custom-svg > .path {
    color: #999;
    fill: #999;
}

.icon-text {
    display: flex;
    align-items: center;
    width: auto;
}

.icon-text svg {
    margin-right: 2px;
}

@media screen and (max-width: 768px) {
    .container {
        max-width: 50vw;
    }

    .social-links {
        display: block;
        text-align: center;
    }

    .icon-text {
        display: grid;
        text-align: center;
        padding: 10px 0;
    }

    .icon-text svg {
        margin: 0 auto;
    }
}

@media screen and (max-width: 480px) {
    blockquote {
        font-size: 3vw;
    }
}