    /* roboto-slab-300 - latin */
    @font-face {
    font-family: 'Roboto Slab';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/roboto-slab-v24-latin-300.eot'); /* IE9 Compat Modes */
    src: local(''),
        url('../fonts/roboto-slab-v24-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
        url('../fonts/roboto-slab-v24-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
        url('../fonts/roboto-slab-v24-latin-300.woff') format('woff'), /* Modern Browsers */
        url('../fonts/roboto-slab-v24-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
        url('../fonts/roboto-slab-v24-latin-300.svg#RobotoSlab') format('svg'); /* Legacy iOS */
    }

    html,body {
        margin: 0;
        height: 100%;
    }
        
    body {
        font-family: 'Roboto Slab';
        font-size: 18px;
        background-color: black;
    }
            
    body:before {
        opacity: 0;
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        z-index: -1;
        height: 100%;
        width: 100%;
        object-fit: cover;
        background-image: url("../img/landscape.jpg");
        transition: opacity 2.5s;
    }
            
    body.loaded:before {
        opacity: 1;
    }

    .wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    .card {
        background: #000;
        border-radius: 2.5%;
        color: white;
        display: flex;
        flex-direction: row;
        padding: 5em;
        opacity: 0;
        transition: opacity 0.5s, transform 1s;
        transform: scale(0.8);
        max-width: 1000px;
    }

    .card.loaded {
        opacity: 1;
        transform: scale(1.0);
    }

    .social-bar {
        list-style: none;
        padding-left: 0;
    }

    .social-bar li {
        margin: 0.375rem;
        display: inline-block;
        position: relative;
    }

    .social-bar li a {
        font-size: 1.7em;
        display: flex;
        color: white;
        border: 1px solid white;
        border-radius: 100%;
        width: 2em;
        height: 2em;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        transition: 0.2s;
    }

    .social-bar li a:hover {
        background: rgba(255, 255, 255, 1);
        color: black;
    }

    .profile-wrapper {
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    .img-profile {
        border-radius: 100%;
        height: 200px;
        width: 200px;
        object-fit: cover;
        margin-left: 4em;
    }

    @media only screen and (max-width: 768px) {
        body {
            font-size: 12px;
        }

        .img-profile {
            height: 150px;
            width: 150px;
            margin-left: 2em;
        }
    }

    @media only screen and (max-width: 522px) {
        body {
            font-size: 16px;
        }
        
        .profile-wrapper {
            flex-direction: row;
        }
        
        .img-profile {
            margin-left: 0;
        }
        
        .card {
            flex-direction: column;
            flex-direction: column-reverse;
            width: 100%;
            margin-left: 1em;
            margin-right: 1em;
            padding-left: 1em;
            padding-right: 1em;
        }
        
        .card div {
            text-align: center;
        }
    }

    @media only screen and (max-width: 375px) {
        .card {
            margin-left: 0;
            margin-right: 0;
        }
    }

    @media only screen and (max-width: 320px) {
        body {
            font-size: 15px;
        }
    }